Repository: burnash/gspread Branch: master Commit: 1fb4ba7d37f5 Files: 176 Total size: 8.2 MB Directory structure: gitextract_gl9l53pb/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── dependabot.yaml │ └── workflows/ │ ├── main.yaml │ └── release.yaml ├── .gitignore ├── .readthedocs.yaml ├── HISTORY.rst ├── LICENSE.txt ├── README.md ├── docs/ │ ├── _templates/ │ │ └── layout.html │ ├── advanced.rst │ ├── api/ │ │ ├── auth.rst │ │ ├── client.rst │ │ ├── exceptions.rst │ │ ├── http_client.rst │ │ ├── index.rst │ │ ├── models/ │ │ │ ├── cell.rst │ │ │ ├── index.rst │ │ │ ├── spreadsheet.rst │ │ │ └── worksheet.rst │ │ ├── top-level.rst │ │ └── utils.rst │ ├── community.rst │ ├── conf.py │ ├── index.rst │ ├── oauth2.rst │ ├── requirements.txt │ └── user-guide.rst ├── gspread/ │ ├── __init__.py │ ├── auth.py │ ├── cell.py │ ├── client.py │ ├── exceptions.py │ ├── http_client.py │ ├── py.typed │ ├── spreadsheet.py │ ├── urls.py │ ├── utils.py │ └── worksheet.py ├── lint-requirements.txt ├── pyproject.toml ├── test-requirements.txt ├── tests/ │ ├── __init__.py │ ├── cassettes/ │ │ ├── CellTest.test_a1_value.json │ │ ├── CellTest.test_define_named_range.json │ │ ├── CellTest.test_delete_named_range.json │ │ ├── CellTest.test_equality.json │ │ ├── CellTest.test_merge_cells.json │ │ ├── CellTest.test_numeric_value.json │ │ ├── CellTest.test_properties.json │ │ ├── ClientTest.test_access_non_existing_spreadsheet.json │ │ ├── ClientTest.test_access_private_spreadsheet.json │ │ ├── ClientTest.test_add_timeout.json │ │ ├── ClientTest.test_client_export_spreadsheet.json │ │ ├── ClientTest.test_copy.json │ │ ├── ClientTest.test_create.json │ │ ├── ClientTest.test_import_csv.json │ │ ├── ClientTest.test_list_spreadsheet_files.json │ │ ├── ClientTest.test_no_found_exeption.json │ │ ├── ClientTest.test_open_all_has_metadata.json │ │ ├── ClientTest.test_open_by_key_has_metadata.json │ │ ├── ClientTest.test_open_by_name_has_metadata.json │ │ ├── ClientTest.test_openall.json │ │ ├── SpreadsheetTest.test_add_del_worksheet.json │ │ ├── SpreadsheetTest.test_bad_json_api_error.json │ │ ├── SpreadsheetTest.test_creationTime_prop.json │ │ ├── SpreadsheetTest.test_export_spreadsheet.json │ │ ├── SpreadsheetTest.test_get_lastUpdateTime.json │ │ ├── SpreadsheetTest.test_get_worksheet.json │ │ ├── SpreadsheetTest.test_get_worksheet_by_id.json │ │ ├── SpreadsheetTest.test_lastUpdateTime_prop.json │ │ ├── SpreadsheetTest.test_properties.json │ │ ├── SpreadsheetTest.test_sheet1.json │ │ ├── SpreadsheetTest.test_timezone_and_locale.json │ │ ├── SpreadsheetTest.test_update_title.json │ │ ├── SpreadsheetTest.test_values_batch_get.json │ │ ├── SpreadsheetTest.test_values_get.json │ │ ├── SpreadsheetTest.test_worksheet.json │ │ ├── SpreadsheetTest.test_worksheet_iteration.json │ │ ├── SpreadsheetTest.test_worksheets.json │ │ ├── SpreadsheetTest.test_worksheets_exclude_hidden.json │ │ ├── WorksheetTest.test_acell.json │ │ ├── WorksheetTest.test_add_protected_range_normal.json │ │ ├── WorksheetTest.test_add_protected_range_warning.json │ │ ├── WorksheetTest.test_add_validation.json │ │ ├── WorksheetTest.test_append_row.json │ │ ├── WorksheetTest.test_append_row_with_empty_value.json │ │ ├── WorksheetTest.test_append_row_with_empty_value_and_table_range.json │ │ ├── WorksheetTest.test_attributes.json │ │ ├── WorksheetTest.test_auto_resize_columns.json │ │ ├── WorksheetTest.test_basic_filters.json │ │ ├── WorksheetTest.test_batch_clear.json │ │ ├── WorksheetTest.test_batch_get.json │ │ ├── WorksheetTest.test_batch_merged_cells.json │ │ ├── WorksheetTest.test_batch_update.json │ │ ├── WorksheetTest.test_cell.json │ │ ├── WorksheetTest.test_cell_return_first.json │ │ ├── WorksheetTest.test_clear.json │ │ ├── WorksheetTest.test_clear_tab_color.json │ │ ├── WorksheetTest.test_copy_cut_range.json │ │ ├── WorksheetTest.test_delete_cols.json │ │ ├── WorksheetTest.test_delete_protected_range.json │ │ ├── WorksheetTest.test_delete_row.json │ │ ├── WorksheetTest.test_find.json │ │ ├── WorksheetTest.test_findall.json │ │ ├── WorksheetTest.test_format.json │ │ ├── WorksheetTest.test_freeze.json │ │ ├── WorksheetTest.test_get_all_records.json │ │ ├── WorksheetTest.test_get_all_records_different_header.json │ │ ├── WorksheetTest.test_get_all_records_duplicate_keys.json │ │ ├── WorksheetTest.test_get_all_records_numericise_unformatted.json │ │ ├── WorksheetTest.test_get_all_records_pad_more_than_one_key.json │ │ ├── WorksheetTest.test_get_all_records_pad_one_key.json │ │ ├── WorksheetTest.test_get_all_records_pad_values.json │ │ ├── WorksheetTest.test_get_all_records_value_render_options.json │ │ ├── WorksheetTest.test_get_all_records_with_all_values_blank.json │ │ ├── WorksheetTest.test_get_all_records_with_blank_final_headers.json │ │ ├── WorksheetTest.test_get_all_records_with_keys_blank.json │ │ ├── WorksheetTest.test_get_all_records_with_some_values_blank.json │ │ ├── WorksheetTest.test_get_all_values.json │ │ ├── WorksheetTest.test_get_all_values_date_time_render_options.json │ │ ├── WorksheetTest.test_get_all_values_title_is_a1_notation.json │ │ ├── WorksheetTest.test_get_and_get_values_have_same_signature.json │ │ ├── WorksheetTest.test_get_merge_cells_and_unmerge_cells.json │ │ ├── WorksheetTest.test_get_notes.json │ │ ├── WorksheetTest.test_get_notes_2nd_sheet.json │ │ ├── WorksheetTest.test_get_returns_ValueRange_with_metadata.json │ │ ├── WorksheetTest.test_get_values_and_combine_merged_cells.json │ │ ├── WorksheetTest.test_get_values_and_maintain_size.json │ │ ├── WorksheetTest.test_get_values_can_emulate_get_with_kwargs.json │ │ ├── WorksheetTest.test_get_values_merge_cells_from_centre_of_sheet.json │ │ ├── WorksheetTest.test_get_values_merge_cells_outside_of_range.json │ │ ├── WorksheetTest.test_get_values_merge_cells_with_named_range.json │ │ ├── WorksheetTest.test_get_values_returns_padded_get_as_listoflists.json │ │ ├── WorksheetTest.test_get_values_with_args_or_kwargs.json │ │ ├── WorksheetTest.test_group_columns.json │ │ ├── WorksheetTest.test_group_rows.json │ │ ├── WorksheetTest.test_hide_columns_rows.json │ │ ├── WorksheetTest.test_hide_gridlines.json │ │ ├── WorksheetTest.test_hide_show_worksheet.json │ │ ├── WorksheetTest.test_insert_cols.json │ │ ├── WorksheetTest.test_insert_row.json │ │ ├── WorksheetTest.test_range.json │ │ ├── WorksheetTest.test_range_get_all_values.json │ │ ├── WorksheetTest.test_range_reversed.json │ │ ├── WorksheetTest.test_range_unbounded.json │ │ ├── WorksheetTest.test_reorder_worksheets.json │ │ ├── WorksheetTest.test_resize.json │ │ ├── WorksheetTest.test_set_tab_color.json │ │ ├── WorksheetTest.test_show_gridlines.json │ │ ├── WorksheetTest.test_sort.json │ │ ├── WorksheetTest.test_update_acell.json │ │ ├── WorksheetTest.test_update_and_get.json │ │ ├── WorksheetTest.test_update_cell.json │ │ ├── WorksheetTest.test_update_cell_multiline.json │ │ ├── WorksheetTest.test_update_cell_objects.json │ │ ├── WorksheetTest.test_update_cell_unicode.json │ │ ├── WorksheetTest.test_update_cells.json │ │ ├── WorksheetTest.test_update_cells_noncontiguous.json │ │ ├── WorksheetTest.test_update_cells_unicode.json │ │ ├── WorksheetTest.test_update_tab_color.json │ │ ├── WorksheetTest.test_update_title.json │ │ ├── WorksheetTest.test_update_works_with_swapped_values_and_range.json │ │ ├── WorksheetTest.test_worksheet_notes.json │ │ └── WorksheetTest.test_worksheet_update_index.json │ ├── cell_test.py │ ├── client_test.py │ ├── conftest.py │ ├── spreadsheet_test.py │ ├── utils_test.py │ └── worksheet_test.py └── tox.ini ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or by contacting the project team at gspread-conduct@googlegroups.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org ================================================ FILE: .github/CONTRIBUTING.md ================================================ # Contributing Guide - Check the [GitHub Issues](https://github.com/burnash/gspread/issues) for open issues that need attention. - Follow the [How to submit a contribution](https://opensource.guide/how-to-contribute/#how-to-submit-a-contribution) Guide. - Make sure unit tests pass. Please read how to run unit tests [below](#run-tests-offline). - If you are fixing a bug: - If you are resolving an existing issue, reference the issue ID in a commit message `(e.g., fixed #XXXX)`. - If the issue has not been reported, please add a detailed description of the bug in the Pull Request (PR). - Please add a regression test case to check the bug is fixed. - If you are adding a new feature: - Please open a suggestion issue first. - Provide a convincing reason to add this feature and have it greenlighted before working on it. - Add tests to cover the functionality. - Please follow [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/). ## Tests To run tests, add your credentials to `tests/creds.json` and run ```bash GS_CREDS_FILENAME="tests/creds.json" GS_RECORD_MODE="all" tox -e py -- -k "" ``` For more information on tests, see below. ## CI checks If the [test](#run-tests-offline) or [lint](#lint) commands fail, the CI will fail, and you won't be able to merge your changes into gspread. Use [format](#format) to format your code before submitting a PR. Not doing so may cause [lint](#lint) to fail. ## Install dependencies ```bash pip install tox ``` ## Run tests (offline) If the calls to the Sheets API have not changed, you can run the tests offline. Otherwise, you will have to [run them online](#run-tests-online) to record the new API calls. This will use the currently recorded HTTP requests + responses. It does not make any HTTP calls, and does not require an active internet connection. ```bash tox -e py ``` ### Run a specific test ```bash tox -e py -- -k TEST_NAME ``` The CI uses tox. For faster local development, you can set up an environment and use `pytest`, where `-k TEST_NAME` is used to filter to tests matching `TEST_NAME`. For more info run `pytest --help`. ```bash python -m venv env source /env/bin/activate pip install test-requirements.txt pytest -k TEST_NAME ``` ## Format ```bash tox -e format ``` ## Lint ```bash tox -e lint ``` ## Render Documentation The documentation uses [reStructuredText](http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html#rst-index) markup and is rendered by [Sphinx](http://www.sphinx-doc.org/). ```bash tox -e doc ``` The rendered documentation is placed into `docs/build/html`. `index.html` is an entry point. ## Run tests (online) gspread uses [vcrpy](https://github.com/kevin1024/vcrpy) to record and replay HTTP interactions with Sheets API. ### `GS_CREDS_FILENAME` environment variable You must provide service account credentials using the `GS_CREDS_FILENAME` environment variable in order to make HTTP requests to the Sheets API. [Obtain service account credentials from Google Developers Console](https://docs.gspread.org/en/latest/oauth2.html#for-bots-using-service-account). ### `GS_RECORD_MODE` environment variable You can control vcrpy's [Record Mode](https://vcrpy.readthedocs.io/en/latest/usage.html#record-modes) using `GS_RECORD_MODE` environment variable. It can be: - `all` - record all HTTP requests, overwriting existing ones - `new_episodes` - record new HTTP requests and replay existing ones - `none` - replay existing HTTP requests only In the following cases, you must record new HTTP requests: - a new test is added - an existing test is updated and does a new HTTP request - gspread is updated and does a new HTTP request ### Run test, capturing *all* HTTP requests In some cases if the test suite can't record new episodes, or it can't replay them offline, you can run a complete update of the cassettes. ```bash GS_CREDS_FILENAME=<./YOUR_CREDS.json> GS_RECORD_MODE=all tox -e py ``` ### Run test, capturing *only new* HTTP requests To record new HTTP requests: 1. Remove the file holding the recorded HTTP requests of the test(s). e.g., 1. for the file `tests/cell_test.py`: 2. for the test `test_a1_value` 3. remove the file `tests/cassettes/CellTest.test_a1_value.json` 1. Run the tests with `GS_RECORD_MODE=new_episodes`. ```bash GS_CREDS_FILENAME=<./YOUR_CREDS.json> GS_RECORD_MODE=new_episodes tox -e py ``` This will mostly result in a lot of updated files in `tests/cassettes/`. Don't forget to add them in your PR. Please add them in a dedicated commit, in order to make the review process easier. Afterwards, remember to [run the tests in offline mode](#run-tests-offline) to make sure you have recorded everything correctly. ## Release Old release notes are [here](https://gist.github.com/burnash/335f977a74b8bfdc7968). New release system: - Update version number in [`gspread/__init__.py`](../gspread/__init__.py). - Get changelog from drafting a new [GitHub release](https://github.com/burnash/gspread/releases/new) (do not publish, instead cancel.) - Add changelog to [`HISTORY.rst`](../HISTORY.rst). - Commit the changes as `Release vX.Y.Z` (do not push yet.) - Run `tox -e lint,py,build,doc` to check build/etc. - Push the commit. Wait for the CI to pass. - Add a tag `vX.Y.Z` to the commit locally. This will trigger a new release on PyPi, and make a release on GitHub. - View the release on [GitHub](https://github.com/burnash/gspread/releases) and [PyPi](https://pypi.org/project/gspread/)! - Sync or add the latest version to the [Gspread ReadTheDocs](https://app.readthedocs.org/projects/gspread/) ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Important**: Please do not post usage questions here. To get a quick response, please ask a question on Stack Overflow using `gspread` tag. See existing questions: https://stackoverflow.com/questions/tagged/gspread --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. 2. 3. **Expected behavior** A clear and concise description of what you expected to happen. **Code example*** If applicable, provide a code example to help explain your problem. **Screenshots** If applicable, add screenshots to help explain your problem. **Environment info:** - Operating System [e.g. Linux, Windows, macOS]: - Python version - gspread version **Stack trace or other output that would be helpful** **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: true contact_links: - name: Questions and Help url: http://stackoverflow.com/questions/tagged/gspread about: This issue tracker is not for support questions. To get a quick response from the community, please ask a question on Stack Overflow using `gspread` tag. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/dependabot.yaml ================================================ version: 2 updates: - package-ecosystem: github-actions directory: / schedule: interval: weekly - package-ecosystem: pip directory: / schedule: interval: weekly ================================================ FILE: .github/workflows/main.yaml ================================================ name: lint_python on: push: branches: - "**" # run all branches tags-ignore: - "*" # ignore all tags, release.yaml will trigger the CI pull_request: # run on all pull requests concurrency: cancel-in-progress: true group: group-${{ github.ref_name }} jobs: lint_python: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python: ["3.8", "3.9", "3.10", "3.11", "3.x"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - run: pip install -U pip - run: pip install -U bandit pyupgrade pip-audit tox setuptools - run: bandit --recursive --skip B105,B110,B311,B605,B607 --exclude ./.tox . - run: tox -e lint - run: tox -e py - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus - run: pip-audit --ignore-vuln PYSEC-2023-228 --ignore-vuln PYSEC-2022-43012 --ignore-vuln GHSA-5rjg-fvgr-3xxf --ignore-vuln GHSA-48p4-8xcf-vxj5 --ignore-vuln GHSA-pq67-6m6q-mj2v # pip:PYSEC-2023-228 setuptools:PYSEC-2022-43012 setuptools:GHSA-5rjg-fvgr-3xxf urllib:GHSA-48p4-8xcf-vxj5 urllib:GHSA-pq67-6m6q-mj2v - run: tox -e build - run: tox -e doc ================================================ FILE: .github/workflows/release.yaml ================================================ name: Releases on: push: tags: - 'v*' jobs: release: runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout uses: actions/checkout@v4 - name: Setup python uses: actions/setup-python@v5 with: python-version: "3.9" - name: Setup tox run: pip install tox - name: Run linter run: tox -e lint - name: Run tests run: tox -e py - name: Build package run: tox -e build - name: Create release uses: ncipollo/release-action@v1 with: artifacts: dist/gspread-* token: ${{ secrets.GH_TOKEN }} generateReleaseNotes: True artifactErrorsFailBuild: True - name: Publish to TestPyPi uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository-url: https://test.pypi.org/legacy/ verbose: true - name: Publish to PyPi uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} ================================================ FILE: .gitignore ================================================ # vscode .vscode/ # python **/__pycache__/ # secrets tests/creds.json # virtualenv env/ # tox .tox/ # build gspread.egg-info/ dist/ docs/build/ ================================================ FILE: .readthedocs.yaml ================================================ # .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-22.04 tools: python: "3.11" # Build documentation in the docs/ directory with Sphinx sphinx: fail_on_warning: true configuration: docs/conf.py # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: docs/requirements.txt - method: pip path: ./ ================================================ FILE: HISTORY.rst ================================================ Release History =============== 6.2.1 (2025-05-14) ------------------ * Fix public API auth snippet by @Jayy001 in https://github.com/burnash/gspread/pull/1545 * Clarify the first step: authentication by @hraftery in https://github.com/burnash/gspread/pull/1546 * Fix typo in community.rst by @s2t2 in https://github.com/burnash/gspread/pull/1547 * rearrange flow to remove reference to `creds` by @alifeee in https://github.com/burnash/gspread/pull/1525 * switch safety for pip-audit by @alifeee in https://github.com/burnash/gspread/pull/1551 * Include the duplicate column names in error message by @NickCrews in https://github.com/burnash/gspread/pull/1548 6.2.0 (2025-02-27) ------------------ * Add property expiry in gspread client by @lavigne958 in https://github.com/burnash/gspread/pull/1453 * Bump typing-extensions from 4.11.0 to 4.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1471 * Fix code block formatting typo in README by @agrvz in https://github.com/burnash/gspread/pull/1474 * ignore jinja CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1481 * Type part of test suite utils by @lavigne958 in https://github.com/burnash/gspread/pull/1483 * Remove passing exception as args to super in APIError by @mike-flowers-airbnb in https://github.com/burnash/gspread/pull/1477 * Bump mypy from 1.10.0 to 1.10.1 by @dependabot in https://github.com/burnash/gspread/pull/1488 * Update advanced.rst by @yatender-rjliving in https://github.com/burnash/gspread/pull/1492 * Bump bandit from 1.7.8 to 1.7.9 by @dependabot in https://github.com/burnash/gspread/pull/1485 * Bump flake8 from 7.0.0 to 7.1.0 by @dependabot in https://github.com/burnash/gspread/pull/1486 * Bump typing-extensions from 4.12.0 to 4.12.2 by @dependabot in https://github.com/burnash/gspread/pull/1480 * Bump mypy from 1.10.1 to 1.11.1 by @dependabot in https://github.com/burnash/gspread/pull/1497 * Bump black from 24.4.2 to 24.8.0 by @dependabot in https://github.com/burnash/gspread/pull/1499 * Bump flake8 from 7.1.0 to 7.1.1 by @dependabot in https://github.com/burnash/gspread/pull/1501 * Fix docstring about BackOffHTTPClient by @pataiji in https://github.com/burnash/gspread/pull/1502 * Fix comment to reflect correct google-auth package version requirement by @ikmals in https://github.com/burnash/gspread/pull/1503 * Doc/community addons orm package by @lavigne958 in https://github.com/burnash/gspread/pull/1506 * fix: fix type annotation for default_blank by @hiro-o918 in https://github.com/burnash/gspread/pull/1505 * Bump mypy from 1.11.1 to 1.11.2 by @dependabot in https://github.com/burnash/gspread/pull/1508 * better handler API error parsing. by @lavigne958 in https://github.com/burnash/gspread/pull/1510 * Add test on receiving an invalid JSON in the APIError exception handler. by @lavigne958 in https://github.com/burnash/gspread/pull/1512 * [feature] Add 'expand_table' feature by @lavigne958 in https://github.com/burnash/gspread/pull/1475 * Bump bandit from 1.7.9 to 1.7.10 by @dependabot in https://github.com/burnash/gspread/pull/1514 * Created a `batch_merge` function [Issue #1473] by @muddi900 in https://github.com/burnash/gspread/pull/1498 * Added a range option to `Worksheet.get_notes` [Issue #1482] by @muddi900 in https://github.com/burnash/gspread/pull/1487 * Documentation update for gspread.worksheet.Worksheet.get_all_records by @levon003 in https://github.com/burnash/gspread/pull/1529 * add example for `batch_merge` by @alifeee in https://github.com/burnash/gspread/pull/1542 * explicitly list exported package symbols by @alinsavix in https://github.com/burnash/gspread/pull/1531 6.1.4 (2024-10-21) ------------------ * remove dependency on requests-2.27.0 6.1.3 (2024-10-03) ------------------ * ignore jinja CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1481 * Remove passing exception as args to super in APIError by @mike-flowers-airbnb in https://github.com/burnash/gspread/pull/1477 * better handler API error parsing. by @lavigne958 in https://github.com/burnash/gspread/pull/1510 * Add test on receiving an invalid JSON in the APIError exception handler. by @lavigne958 in https://github.com/burnash/gspread/pull/1512 6.1.2 (2024-05-17) ------------------ * add note about runnings tests to contrib guide by @alifeee in https://github.com/burnash/gspread/pull/1465 * Some updates on `get_notes` by @nbwzx in https://github.com/burnash/gspread/pull/1461 6.1.1 (2024-05-16) ------------------ * Add some missing typing in code by @lavigne958 in https://github.com/burnash/gspread/pull/1448 * More fixes for `Worksheet.update` argument ordering & single cell updating (i.e. now `Worksheet.update_acell`) by @alexmalins in https://github.com/burnash/gspread/pull/1449 * Added 'add_data_validation` to `Workhsheet` [Issue #1420] by @muddi900 in https://github.com/burnash/gspread/pull/1444 * Bump typing-extensions from 4.10.0 to 4.11.0 by @dependabot in https://github.com/burnash/gspread/pull/1450 * Bump black from 23.3.0 to 24.4.0 by @dependabot in https://github.com/burnash/gspread/pull/1452 * Fix incorrect version number in HISTORY.rst from 6.0.1 to 6.1.0 by @yhay81 in https://github.com/burnash/gspread/pull/1455 * add `get_notes` by @nbwzx in https://github.com/burnash/gspread/pull/1451 * Bump mypy from 1.9.0 to 1.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1459 * Bump black from 24.4.0 to 24.4.2 by @dependabot in https://github.com/burnash/gspread/pull/1460 * bugfix: handle domain name in spreadsheet copy permissions by @lavigne958 in https://github.com/burnash/gspread/pull/1458 * Fix/api key auth version by @alifeee in https://github.com/burnash/gspread/pull/1463 * Ignore pip vulnerabilities in CI. by @lavigne958 in https://github.com/burnash/gspread/pull/1464 * Remove StrEnum dependency and added custom class[issue #1462] by @muddi900 in https://github.com/burnash/gspread/pull/1469 6.1.0 (2024-03-28) ------------------ * Add py.typed marker by @lavigne958 in https://github.com/burnash/gspread/pull/1422 * Improve back-off client by @lavigne958 in https://github.com/burnash/gspread/pull/1415 * Add new auth method API key by @lavigne958 in https://github.com/burnash/gspread/pull/1428 * Bugfix/add set timeout by @lavigne958 in https://github.com/burnash/gspread/pull/1417 * Fix wrapper `cast_to_a1_notation` by @lavigne958 in https://github.com/burnash/gspread/pull/1427 * Bump bandit from 1.7.5 to 1.7.8 by @dependabot in https://github.com/burnash/gspread/pull/1433 * Bump mypy from 1.6.1 to 1.9.0 by @dependabot in https://github.com/burnash/gspread/pull/1432 * Bump typing-extensions from 4.8.0 to 4.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1424 * Bump flake8 from 5.0.4 to 7.0.0 by @dependabot in https://github.com/burnash/gspread/pull/1375 * fix error message readability by @imrehg in https://github.com/burnash/gspread/pull/1435 * Add missing method `import_csv()` by @lavigne958 in https://github.com/burnash/gspread/pull/1426 * update readme examples by @alifeee in https://github.com/burnash/gspread/pull/1431 * Add user friendly message when we can't override a test cassette by @lavigne958 in https://github.com/burnash/gspread/pull/1438 * Allow "warning" type protected ranges by @alifeee in https://github.com/burnash/gspread/pull/1439 * Improve README and documentation with value render options by @lavigne958 in https://github.com/burnash/gspread/pull/1446 6.0.2 (2024-02-14) ------------------ * Fixup gspread client init arguments by @lavigne958 in https://github.com/burnash/gspread/pull/1412 6.0.1 (2024-02-06) ------------------ * Allow client to use external Session object by @lavigne958 in https://github.com/burnash/gspread/pull/1384 * Remove-py-3.7-support by @alifeee in https://github.com/burnash/gspread/pull/1396 * bugfix/client export by @lavigne958 in https://github.com/burnash/gspread/pull/1392 * Fix oauth flow typo by @alifeee in https://github.com/burnash/gspread/pull/1397 * check oauth creds type using `isinstance` by @alifeee in https://github.com/burnash/gspread/pull/1398 * Fix type hints at find method in worksheet.py by @deftfitf in https://github.com/burnash/gspread/pull/1407 * Fixup get empty cell value is `None` by @lavigne958 in https://github.com/burnash/gspread/pull/1404 * Fix missing attribute `spreadsheet` in `Worksheet`. by @lavigne958 in https://github.com/burnash/gspread/pull/1402 * update migration guide by @alifeee in https://github.com/burnash/gspread/pull/1409 6.0.0 (2024-01-28) ------------------ New Contributor * Remove deprecated method delete_row by @cgkoutzigiannis in https://github.com/burnash/gspread/pull/1062 * Initial typing in client.py by @OskarBrzeski in https://github.com/burnash/gspread/pull/1159 * Split client http client by @lavigne958 in https://github.com/burnash/gspread/pull/1190 * Spelling fix & update docs with date_time_render_option behaviour by @alifeee in https://github.com/burnash/gspread/pull/1187 * #966 Add sketch typing for utils.py by @butvinm in https://github.com/burnash/gspread/pull/1196 * Remove accepted_kwargs decorator by @lavigne958 in https://github.com/burnash/gspread/pull/1229 * Remove/python-3.7 by @alifeee in https://github.com/burnash/gspread/pull/1234 * Bump isort from 5.11.4 to 5.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1165 * bump flake8 to 6.0.0 by @alifeee in https://github.com/burnash/gspread/pull/1236 * merge master into 6.0.0 by @lavigne958 in https://github.com/burnash/gspread/pull/1241 * Remplace named tuples with enums by @lavigne958 in https://github.com/burnash/gspread/pull/1250 * Feature/add type hints worksheets by @lavigne958 in https://github.com/burnash/gspread/pull/1254 * Implement hex color conversion by @idonec in https://github.com/burnash/gspread/pull/1270 * remove lastUpdateTime by @alifeee in https://github.com/burnash/gspread/pull/1295 * Merge `master` into `feature/release_6_0_0` by @alifeee in https://github.com/burnash/gspread/pull/1320 * Add type checking to lint by @alifeee in https://github.com/burnash/gspread/pull/1337 * Warning/update swapped args by @alifeee in https://github.com/burnash/gspread/pull/1336 * Improve `Worksheet.sort()` signature by @lavigne958 in https://github.com/burnash/gspread/pull/1342 * Make `get_values` and alias of `get` by @alifeee in https://github.com/burnash/gspread/pull/1296 * fix type issue (remove `.first()` function) by @alifeee in https://github.com/burnash/gspread/pull/1344 * Remove/get records use index by @alifeee in https://github.com/burnash/gspread/pull/1345 * increase warning stacklevel from 1 to 2 by @alifeee in https://github.com/burnash/gspread/pull/1361 * Feature/merge master by @lavigne958 in https://github.com/burnash/gspread/pull/1371 * feature/merge master by @lavigne958 in https://github.com/burnash/gspread/pull/1372 * Simplify get records by @alifeee in https://github.com/burnash/gspread/pull/1374 * Add util function `to_records` to build records by @lavigne958 in https://github.com/burnash/gspread/pull/1377 * feature/add utils get records by @lavigne958 in https://github.com/burnash/gspread/pull/1378 * Add migration guide for get_all_records by @lavigne958 in https://github.com/burnash/gspread/pull/1379 * feature/merge master into release 6 0 0 by @lavigne958 in https://github.com/burnash/gspread/pull/1381 * Feature/release 6 0 0 by @lavigne958 in https://github.com/burnash/gspread/pull/1382 5.12.4 (2023-12-31) ------------------- * Bump actions/setup-python from 4 to 5 by @dependabot in https://github.com/burnash/gspread/pull/1370 * Fixed default value of merge_type parameter in merge_cells function docstring. by @neolooong in https://github.com/burnash/gspread/pull/1373 5.12.3 (2023-12-15) ------------------- * 1363 get all records retrieves a large number of empty rows after the end of the data by @alifeee in https://github.com/burnash/gspread/pull/1364 5.12.2 (2023-12-04) ------------------- * Many fixes for `get_records` by @alifeee in https://github.com/burnash/gspread/pull/1357 * change `worksheet.update` migration guide by @alifeee in https://github.com/burnash/gspread/pull/1362 5.12.1 (2023-11-29) ------------------- * feature/readme migration v6 by @lavigne958 in https://github.com/burnash/gspread/pull/1297 * add deprecation warnings for lastUpdateTime... by @alifeee in https://github.com/burnash/gspread/pull/1333 * remove `use_index` and references to it in `get_records` by @alifeee in https://github.com/burnash/gspread/pull/1343 * make deprecation warning dependent on if kwarg is used for client_factory by @alifeee in https://github.com/burnash/gspread/pull/1349 * fix 1352 expected headers broken by @alifeee in https://github.com/burnash/gspread/pull/1353 * fix `combine_merged_cells` when using from a range that doesn't start at `A1` by @alifeee in https://github.com/burnash/gspread/pull/1335 5.12.0 (2023-10-22) ------------------- * feature -- adding `worksheet.get_records` to get specific row ranges by @AndrewBasem1 in https://github.com/burnash/gspread/pull/1301 * Fix list_spreadsheet_files return value by @mephinet in https://github.com/burnash/gspread/pull/1308 * Fix warning message for `worksheet.update` method by @ksj20 in https://github.com/burnash/gspread/pull/1312 * change lambda function to dict (fix pyupgrade issue) by @alifeee in https://github.com/burnash/gspread/pull/1319 * allows users to silence deprecation warnings by @lavigne958 in https://github.com/burnash/gspread/pull/1324 * Add `maintain_size` to keep asked for size in `get`, `get_values` by @alifeee in https://github.com/burnash/gspread/pull/1305 5.11.3 (2023-09-29) ------------------- * Fix list_spreadsheet_files return value by @mephinet in https://github.com/burnash/gspread/pull/1308 5.11.2 (2023-09-18) ------------------- * Fix merge_combined_cells in get_values (AND 5.11.2 RELEASE) by @alifeee in https://github.com/burnash/gspread/pull/1299 5.11.1 (2023-09-06) ------------------- * Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/burnash/gspread/pull/1288 * remove Drive API access on Spreadsheet init (FIX - VERSION 5.11.1) by @alifeee in https://github.com/burnash/gspread/pull/1291 5.11.0 (2023-09-04) ------------------- * add docs/build to .gitignore by @alifeee in https://github.com/burnash/gspread/pull/1246 * add release process to CONTRIBUTING.md by @alifeee in https://github.com/burnash/gspread/pull/1247 * Update/clean readme badges by @lavigne958 in https://github.com/burnash/gspread/pull/1251 * add test_fill_gaps and docstring for fill_gaps by @alifeee in https://github.com/burnash/gspread/pull/1256 * Remove API calls from `creationTime`/`lastUpdateTime` by @alifeee in https://github.com/burnash/gspread/pull/1255 * Fix Worksheet ID Type Inconsistencies by @FlantasticDan in https://github.com/burnash/gspread/pull/1269 * Add `column_count` prop as well as `col_count` by @alifeee in https://github.com/burnash/gspread/pull/1274 * Add required kwargs with no default value by @lavigne958 in https://github.com/burnash/gspread/pull/1271 * Add deprecation warnings for colors by @alifeee in https://github.com/burnash/gspread/pull/1278 * Add better Exceptions on opening spreadsheets by @alifeee in https://github.com/burnash/gspread/pull/1277 5.10.0 (2023-06-29) ------------------- * Fix rows_auto_resize in worksheet.py by removing redundant self by @MagicMc23 in https://github.com/burnash/gspread/pull/1194 * Add deprecation warning for future release 6.0.x by @lavigne958 in https://github.com/burnash/gspread/pull/1195 * FEATURE: show/hide gridlines (#1197) by @alifeee in https://github.com/burnash/gspread/pull/1202 * CLEANUP: cleanup tox.ini, and ignore ./env by @alifeee in https://github.com/burnash/gspread/pull/1200 * Refactor/update-contributing-guide by @alifeee in https://github.com/burnash/gspread/pull/1206 * Spelling fix (with legacy option) by @alifeee in https://github.com/burnash/gspread/pull/1210 * 457-fetch-without-hidden-worksheets by @alifeee in https://github.com/burnash/gspread/pull/1207 * Add_deprecated_warning_sort_method by @lavigne958 in https://github.com/burnash/gspread/pull/1198 * Update (and test for) internal properties on change by @alifeee in https://github.com/burnash/gspread/pull/1211 * Feature: Add "Remove tab colour" method by @alifeee in https://github.com/burnash/gspread/pull/1199 * Refresh-test-cassettes by @alifeee in https://github.com/burnash/gspread/pull/1217 * update self._properties after batch_update by @alifeee in https://github.com/burnash/gspread/pull/1221 * 700-fill-merged-cells by @alifeee in https://github.com/burnash/gspread/pull/1215 * Fix/update-internal-properties by @alifeee in https://github.com/burnash/gspread/pull/1225 * Add breaking change warning in Worksheet.update() by @lavigne958 in https://github.com/burnash/gspread/pull/1226 * Bump codespell from 2.2.4 to 2.2.5 by @dependabot in https://github.com/burnash/gspread/pull/1232 * Add/refresh last update time by @alifeee in https://github.com/burnash/gspread/pull/1233 * Update-build-tools by @alifeee in https://github.com/burnash/gspread/pull/1231 * add read the doc configuration file by @lavigne958 in https://github.com/burnash/gspread/pull/1235 * update licence year by @alifeee in https://github.com/burnash/gspread/pull/1237 * remove deprecated methods from tests by @alifeee in https://github.com/burnash/gspread/pull/1238 5.9.0 (2023-05-11) ------------------ * Bugfix/fix get last update time by @lavigne958 in https://github.com/burnash/gspread/pull/1186 * Add batch notes insert/update/clear by @lavigne958 in https://github.com/burnash/gspread/pull/1189 5.8.0 (2023-04-05) ------------------ * Bump black from 22.10.0 to 22.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1154 * Bump isort from 5.10.1 to 5.11.3 by @dependabot in https://github.com/burnash/gspread/pull/1155 * Bump isort from 5.11.3 to 5.11.4 by @dependabot in https://github.com/burnash/gspread/pull/1157 * #1104: added a delete by worksheet id method by @muddi900 in https://github.com/burnash/gspread/pull/1148 * improve CI workflow - upgrade setuptools to fix CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1179 * Bump codespell from 2.2.2 to 2.2.4 by @dependabot in https://github.com/burnash/gspread/pull/1178 * Bump bandit from 1.7.4 to 1.7.5 by @dependabot in https://github.com/burnash/gspread/pull/1177 * Bump black from 22.12.0 to 23.1.0 by @dependabot in https://github.com/burnash/gspread/pull/1168 * Update user-guide.rst to include a warning by @alsaenko in https://github.com/burnash/gspread/pull/1181 * Fixed typo in docs/user-guide.rst by @raboba2re in https://github.com/burnash/gspread/pull/1182 * Bump black from 23.1.0 to 23.3.0 by @dependabot in https://github.com/burnash/gspread/pull/1183 * Handle cases when rgbColor is not set by @lavigne958 in https://github.com/burnash/gspread/pull/1184 5.7.2 (2022-12-03) ------------------ * Fix: `hidden` property might not be set from the API by @lavigne958 in https://github.com/burnash/gspread/pull/1151 5.7.1 (2022-11-17) ------------------ * Fix dependencies required version by @lavigne958 in https://github.com/burnash/gspread/pull/1147 5.7.0 (2022-11-13) ------------------ * chore: Update outdated LICENSE year by @bluzir in https://github.com/burnash/gspread/pull/1124 * add dependabot to maintain dependencies by @lavigne958 in https://github.com/burnash/gspread/pull/1126 * improve trigger on CI by @lavigne958 in https://github.com/burnash/gspread/pull/1134 * Bump bandit from 1.7.0 to 1.7.4 by @dependabot in https://github.com/burnash/gspread/pull/1133 * cancel previous run on same ref by @lavigne958 in https://github.com/burnash/gspread/pull/1135 * Bump actions/setup-python from 2 to 4 by @dependabot in https://github.com/burnash/gspread/pull/1127 * Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/burnash/gspread/pull/1128 * Bump black from 22.3.0 to 22.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1132 * Bump isort from 5.9.3 to 5.10.1 by @dependabot in https://github.com/burnash/gspread/pull/1131 * Bump codespell from 2.1.0 to 2.2.2 by @dependabot in https://github.com/burnash/gspread/pull/1130 * add named tuple for `DateTimeRenderOption` by @lavigne958 in https://github.com/burnash/gspread/pull/1136 * Feature/copy cut paste by @lavigne958 in https://github.com/burnash/gspread/pull/1138 * isSheetHidden method added to worksheet.py by @SazidAF in https://github.com/burnash/gspread/pull/1140 5.6.2 (2022-10-23) ------------------ * update parent folder for `client.copy` method by @lavigne958 in https://github.com/burnash/gspread/pull/1123 5.6.0 (2022-09-10) ------------------ * Fix `clear_note` method when using numeric boundaries by @lavigne958 in https://github.com/burnash/gspread/pull/1106 * Fix a typo in the permissions:create API payload by @jiananma in https://github.com/burnash/gspread/pull/1107 * Fix spreadsheet URL by @lavigne958 in https://github.com/burnash/gspread/pull/1110 * Return created permission on `Spreadsheet.share()` by @lavigne958 in https://github.com/burnash/gspread/pull/1111 * (fixed #1113) Supply correct Google API v3 permission for domains by @NickCrews in https://github.com/burnash/gspread/pull/1115 * Bugfix/numericese all by @lavigne958 in https://github.com/burnash/gspread/pull/1119 New Contributors **************** * @jiananma made their first contribution in https://github.com/burnash/gspread/pull/1107 * @NickCrews made their first contribution in https://github.com/burnash/gspread/pull/1115 5.5.0 (2022-08-31) ------------------ * Use pathlib by @lavigne958 in https://github.com/burnash/gspread/pull/1057 * Migrate to drive API V3 by @lavigne958 in https://github.com/burnash/gspread/pull/1060 * Implement __eq__ method for `Cell` by @chisvi in https://github.com/burnash/gspread/pull/1063 * Add missing documentation on `set_timeout` by @lavigne958 in https://github.com/burnash/gspread/pull/1070 * Add method to transfer / accept ownership of a spreadsheet by @lavigne958 in https://github.com/burnash/gspread/pull/1068 * Add `client_factory` param to `auth` methods by @jlumbroso in https://github.com/burnash/gspread/pull/1075 * Fix `list_protected_ranges` by @lavigne958 in https://github.com/burnash/gspread/pull/1076 * Add function to convert column letter to column index by @lavigne958 in https://github.com/burnash/gspread/pull/1077 * Fix docstring name of named_range() param by @dgilman in https://github.com/burnash/gspread/pull/1081 * Fix grammar in docstring for client.export by @dgilman in https://github.com/burnash/gspread/pull/1080 * Many typo fixes to worksheet docstrings by @dgilman in https://github.com/burnash/gspread/pull/1083 * Fix function `numericise_all` by @lavigne958 in https://github.com/burnash/gspread/pull/1082 * Fix documentation about `oauth_from_dict` by @lavigne958 in https://github.com/burnash/gspread/pull/1088 * inherit_from_before option for insert_row/insert_rows by @yongrenjie in https://github.com/burnash/gspread/pull/1092 * add method to change the color of a tab by @lavigne958 in https://github.com/burnash/gspread/pull/1095 * docs: Fix a few typos by @timgates42 in https://github.com/burnash/gspread/pull/1094 * Fix typo in `Worksheet.batch_format` method by @lavigne958 in https://github.com/burnash/gspread/pull/1101 New Contributors **************** * @chisvi made their first contribution in https://github.com/burnash/gspread/pull/1063 * @jlumbroso made their first contribution in https://github.com/burnash/gspread/pull/1075 * @yongrenjie made their first contribution in https://github.com/burnash/gspread/pull/1092 5.4.0 (2022-06-01) ------------------ * fix typo by @joswlv in https://github.com/burnash/gspread/pull/1031 * Fix error message in `get_all_records` by @lavigne958 in https://github.com/burnash/gspread/pull/1028 * Added feature request #1022. Auto resizing is now available for rows … by @mketer1 in https://github.com/burnash/gspread/pull/1033 * add new method to hide/show a worksheet by @lavigne958 in https://github.com/burnash/gspread/pull/1030 * feat: Download PDF from Spreadsheet #1035 by @100paperkite in https://github.com/burnash/gspread/pull/1036 * Add test on `auto_resize_columns` by @lavigne958 in https://github.com/burnash/gspread/pull/1039 * Add method to unmerge cells by @lavigne958 in https://github.com/burnash/gspread/pull/1040 * Add method to delete a protected range by @lavigne958 in https://github.com/burnash/gspread/pull/1042 * Feature/clean organize documentation by @lavigne958 in https://github.com/burnash/gspread/pull/1043 * Add warning about deprecated oauth flow by @lavigne958 in https://github.com/burnash/gspread/pull/1047 * Add new `batch_format` method. by @lavigne958 in https://github.com/burnash/gspread/pull/1049 * Encode string to utf-8 when importing CSV content by @lavigne958 in https://github.com/burnash/gspread/pull/1054 New Contributors **************** * @joswlv made their first contribution in https://github.com/burnash/gspread/pull/1031 * @mketer1 made their first contribution in https://github.com/burnash/gspread/pull/1033 * @100paperkite made their first contribution in https://github.com/burnash/gspread/pull/1036 5.3.2 (2022-04-12) ------------------ * Bugfix/black python3.10 by @lavigne958 in https://github.com/burnash/gspread/pull/1020 * Automate releases by @lavigne958 in https://github.com/burnash/gspread/pull/1025 * Bugfix/get all record duplicated columns by @lavigne958 in https://github.com/burnash/gspread/pull/1021 5.3.0 (2022-03-28) ------------------ * Feature/rework test cassettes recording by @lavigne958 in https://github.com/burnash/gspread/pull/1004 * add method list protected ranges by @lavigne958 in https://github.com/burnash/gspread/pull/1008 * Add new methods to add/list/delete dimensionGroups by @lavigne958 in https://github.com/burnash/gspread/pull/1010 * Add method to hide rows/columns by @lavigne958 in https://github.com/burnash/gspread/pull/1012 * Add ability to rename Spreadsheets (via a new Spreadsheet.update_title) by @jansim in https://github.com/burnash/gspread/pull/1013 ## New Contributors * @jansim made their first contribution in https://github.com/burnash/gspread/pull/1013 5.2.0 (2022-02-27) ------------------ * Copy comments when during spreadsheet copy by @lavigne958 in https://github.com/burnash/gspread/pull/979 * Update user-guide.rst by @maky-hnou in https://github.com/burnash/gspread/pull/980 * merge setup test cassettes by @lavigne958 in https://github.com/burnash/gspread/pull/982 * Feature/add header validation get all records by @lavigne958 in https://github.com/burnash/gspread/pull/984 * Add timeout to client by @lavigne958 in https://github.com/burnash/gspread/pull/987 * Feature/update timezone and locale by @lavigne958 in https://github.com/burnash/gspread/pull/989 * Feature/make case comparison in find by @lavigne958 in https://github.com/burnash/gspread/pull/990 * Updated API rate limits by @hvinayan in https://github.com/burnash/gspread/pull/993 * Feature/prevent insert row to sheet with colon by @lavigne958 in https://github.com/burnash/gspread/pull/992 ## New Contributors * @maky-hnou made their first contribution in https://github.com/burnash/gspread/pull/980 * @hvinayan made their first contribution in https://github.com/burnash/gspread/pull/993 5.1.1 (2021-12-22) ------------------ * Fix documentation about oauth (#975 by @lavigne958) 5.1.0 (2021-12-22) ------------------ * Codespell skip docs build folder (#962 by @lavigne958) * Update contributing guidelines (#964 by @lavigne958) * Add oauth from dict (#967 by @lavigne958) * Update README.md to include badges (#970 by @lavigne958) * Add new method to get all values as a list of Cells (#968 by @lavigne958) * automatic conversion of a cell letter to uppercase (#972 by @Burovytskyi) 5.0.0 (2021-11-26) ------------------ * Fix a typo in HISTORY.rst (#904 by @TurnrDev) * Fix typo and fix return value written in docstrings (#903 by @rariyama) * Add deprecation warning for delete_row method in documentation (#909 by @javad94) * split files `models.py` and `test.py` (#912 by @lavigne958) * parent 39d1ecb59ca3149a8f46094c720efab883a0dc11 author Christian Clauss 1621149013 +0200 commit ter Christian Clauss 1630103641 +0200 (#869 by @cclaus) * Enable code linter in CI (#915 by @lavigne958) * isort your imports (again), so you don't have to (#914 by @cclaus) * lint_python.yml: Try 'tox -e py' to test current Python (#916 by @cclaus) * Add more flake8 tests (#917 by @cclaus) * Update test suite (#918 by @cclaus) * Avoid IndexError when row_values() returns an empty row (#920 by @cclaus) * Bugfix - remove wrong argument in `batch_update` docstring (#912 by @lavigne958) * Improvement - Add `Worksheet.index` property (#922 by @lavigne958) * Add ability to create directory if it does not exist before saving the credentials to disk. (#925 by @benhoman) * Update test framework and VCR and cassettes (#926 by @lavigne958) * Delete .travis.yml (#928 by @cclaus) * Update tox.ini with all linting commands under lint env (by @lavigne958) * Build package and docs in CI (#930 by @lavigne958) * Update oauth2.rst (#933 by @amlestin) * Update the link to the Google Developers Console (#934 by @Croebh) * allow tests to run on windows, add and improve tests in WorksheetTests, add test on unbounded range, use canonical range as specified in the API, add test cassettes, prevent InvalidGridRange, improve code formatting (#937 by @Fendse) * fix fully qualified class names in API documentation (#944 by @geoffbeier) * fix editor_users_emails - get only from list not all users added to spreadsheet (#939 by @Lukasz) * add shadow method to get a named range from a speadsheet instance (#941 by @lavigne958) * auto_resize_columns (#948 by @FelipeSantos75) * add functions for defining, deleting and listing named ranges (#945 by @p-doyle) * Implement `open` sheet within Drive folder (#951 by @datavaluepeople) * Fix get range for unbounded ranges (#954 by @lavigne958) * remove potential I/O when reading spreadsheet title (956 by @lavigne958) * Add include_values_in_response to append_row & append_rows (#957 by @martimarkov) * replace raw string "ROWS" & "COLUMNS" to Dimension named tuple, replace raw string "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" to ValueRenderOption named tuple, replace raw string "RAW", "USER_ENTERED" to ValueInputOption named tuple (#958 by @ccppoo) 4.0.1 (2021-08-07) ------------------ * Do not overwrite original value when trying to convert to a number (#902 by @lavigne958) 4.0.0 (2021-08-01) ------------------ * Changed `Worksheet.find()` method returns `None` if nothing is found (#899 by @GastonBC) * Add `Worksheet.batch_clear()` to clear multiple ranges. (#897 by @lavigne958) * Fix `copy_permission` argument comparison in `Client.copy()` method (#898 by @lavigne958) * Allow creation of spreadhsheets in a shared drive (#895 by @lavigne958) * Allow `gspread.oauth()` to accept a custom credential file (#891 by @slmtpz) * Update `tox.ini`, remove python2 from env list (#887 by @cclaus) * Add `SpreadSheet.get_worksheet_by_id()` method (#857 by @a-crovetto) * Fix `store_credentials()` when `authorized_user_filename` is passed (#884 by @neuenmuller) * Remove python2 (#879 by @lavigne958) * Use `Makefile` to run tests (#883 by @lavigne958) * Update documentation `Authentication:For End Users` using OAuth Client ID (#835 by @ManuNaEira) * Allow fetching named ranges from `Worksheet.range()` (#809 by @agatti) * Update README to only mention python3.3+ (#877 by @lavigne958) * Fetch `creation` and `lastUpdate` time from `SpreadSheet` on open (#872 by @lavigne958) * Fix bug with `Worksheet.insert_row()` with `value_input_option` argument (#873 by @elijabesu) * Fix typos in doc and comments (#868 by @cclauss) * Auto cast numeric values from sheet cells to python int or float (#866 by @lavigne958) * Add `Worksheet.get_values()` method (#775 by @burnash) * Allow `gspread.oauth()` to accept a custom filename (#847 by @bastienboutonnet) * Document dictionary credentials auth (#860 by @dmytrostriletskyi) * Add `Worksheet.get_note()` (#855 by @water-ghosts ) * Add steps for creating new keys (#856 by @hanzala-sohrab) * Add `folder_id` argument to `Client.copy()` (#851 by @punnerud) * Fix typos in docstrings (#848 by @dgilman) 3.7.0 (2021-02-18) ------------------ * Add `Worksheet.insert_note()`, `Worksheet.update_note()`, `Worksheet.clear_note()` (#818 by @lavigne958) * Update documentation: oauth2.rst (#836 by @Prometheus3375) * Documentation fixes (#838 by @jayeshmanani) * Documentation fixes (#845 by @creednaylor) * Add `Worksheet.insert_cols()` (#802 by @AlexeyDmitriev) * Documentation fixes (#814 by @hkuffel) * Update README.md (#811 by @tasawar-hussain) * Add `value_render_option` parameter to `Worksheet.get_all_records()` (#776 by @damgad) * Remove `requests` from `install_requires` (#801) * Simplify implementation of `Worksheet.insert_rows()` (#799 by @AlexeyDmitriev) * Add `auth.service_account_from_dict()` (#785 b7 @mahenzon) * Fix `ValueRange.from_json()` (#791 by @erakli) * Update documentation: oauth2.rst (#794 by @elnjensen) * Update documentation: oauth2.rst (#789 by @Takur0) * Allow `auth` to be `None`. Fix #773 (#774 by @lepture) 3.6.0 (2020-04-30) ------------------ * Add `Worksheet.insert_rows()` (#734 by @tr-fi) * Add `Worksheet.copy_to()` (#758 by @JoachimKoenigslieb) * Add ability to create a cell instance using A1 notation (#765 by @tivaliy) * Add `auth.service_account()` (#768) * Add Authlib usage (#552 by @lepture) 3.5.0 (2020-04-23) ------------------ * Simplified OAuth2 flow (#762) * Fix `Worksheet.delete_rows()` index error (#760 by @rafa-guillermo) * Deprecate `Worksheet.delete_row()` (#766) * Scope `Worksheet.find()` to a specific row or a column (#739 by @alfonsocv12) * Add `Worksheet.add_protected_range()` #447 (#720 by @KesterChan01) * Add ability to fetch cell address in A1 notation (#763 by @tivaliy) * Add `Worksheet.delete_columns()` (#761 by @rafa-guillermo) * Ignore numericising specific columns in `get_all_records` (#701 by @benjamindhimes) * Add option ``folder_id`` when creating a spreadsheet (#754 by @Abdellam1994) * Add `insertDataOption` to `Worksheet.append_row()` and `Worksheet.append_rows()` (#719 by @lobatt) 3.4.2 (2020-04-06) ------------------ * Fix Python 2 `SyntaxError` in models.py #751 (#752) 3.4.1 (2020-04-05) ------------------ * Fix `TypeError` when using gspread in google colab (#750) 3.4.0 (2020-04-05) ------------------ * Remove `oauth2client` in favor of `google-auth` #472, #529 (#637 by @BigHeadGeorge) * Convert `oauth2client` credentials to `google-auth` (#711 by @aiguofer) * Remove unnecessary `login()` from `gspread.authorize` * Fix sheet name quoting issue (#554, #636, #716): * Add quotes to worksheet title for get_all_values (#640 by @grlbrwrg, #717 by @zynaxsoft) * Escaping title containing single quotes with double quotes (#730 by @vijay-shanker) * Use `utils.absolute_range_name()` to handle range names (#748) * Fix `numericise()`: add underscores test to work in python2 and See More Migration Guide ### Change colors from dictionary to text v6 uses hexadecimal color representation. Change all colors to hex. You can use the compatibility function `gspread.utils.convert_colors_to_hex_value()` to convert a dictionary to a hex string. ```diff - tab_color = {"red": 1, "green": 0.5, "blue": 1} + tab_color = "#FF7FFF" file.sheet1.update_tab_color(tab_color) ``` ### Switch lastUpdateTime from property to method ```diff - age = spreadsheet.lastUpdateTime + age = spreadsheet.get_lastUpdateTime() ``` ### Replace method `Worksheet.get_records` In v6 you can now only get *all* sheet records, using `Worksheet.get_all_records()`. The method `Worksheet.get_records()` has been removed. You can get some records using your own fetches and combine them with `gspread.utils.to_records()`. ```diff + from gspread import utils all_records = spreadsheet.get_all_records(head=1) - some_records = spreadsheet.get_all_records(head=1, first_index=6, last_index=9) - some_records = spreadsheet.get_records(head=1, first_index=6, last_index=9) + header = spreadsheet.get("1:1")[0] + cells = spreadsheet.get("6:9") + some_records = utils.to_records(header, cells) ``` ### Silence warnings In version 5 there are many warnings to mark deprecated feature/functions/methods. They can be silenced by setting the `GSPREAD_SILENCE_WARNINGS` environment variable to `1` ### Add more data to `gspread.Worksheet.__init__` ```diff gc = gspread.service_account(filename="google_credentials.json") spreadsheet = gc.open_by_key("{{key}}") properties = spreadsheet.fetch_sheet_metadata()["sheets"][0]["properties"] - worksheet = gspread.Worksheet(spreadsheet, properties) + worksheet = gspread.Worksheet(spreadsheet, properties, spreadsheet.id, gc.http_client) ``` ## More Examples ### Opening a Spreadsheet ```python # You can open a spreadsheet by its title as it appears in Google Docs sh = gc.open('My poor gym results') # <-- Look ma, no keys! # If you want to be specific, use a key (which can be extracted from # the spreadsheet's url) sht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE') # Or, if you feel really lazy to extract that key, paste the entire url sht2 = gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl') ``` ### Creating a Spreadsheet ```python sh = gc.create('A new spreadsheet') # But that new spreadsheet will be visible only to your script's account. # To be able to access newly created spreadsheet you *must* share it # with your email. Which brings us to… ``` ### Sharing a Spreadsheet ```python sh.share('otto@example.com', perm_type='user', role='writer') ``` ### Selecting a Worksheet ```python # Select worksheet by index. Worksheet indexes start from zero worksheet = sh.get_worksheet(0) # By title worksheet = sh.worksheet("January") # Most common case: Sheet1 worksheet = sh.sheet1 # Get a list of all worksheets worksheet_list = sh.worksheets() ``` ### Creating a Worksheet ```python worksheet = sh.add_worksheet(title="A worksheet", rows="100", cols="20") ``` ### Deleting a Worksheet ```python sh.del_worksheet(worksheet) ``` ### Getting a Cell Value ```python # With label val = worksheet.get('B1').first() # With coords val = worksheet.cell(1, 2).value ``` ### Getting All Values From a Row or a Column ```python # Get all values from the first row values_list = worksheet.row_values(1) # Get all values from the first column values_list = worksheet.col_values(1) ``` ### Getting All Values From a Worksheet as a List of Lists ```python from gspread.utils import GridRangeType list_of_lists = worksheet.get(return_type=GridRangeType.ListOfLists) ``` ### Getting a range of values Receive only the cells with a value in them. ```python >>> worksheet.get("A1:B4") [['A1', 'B1'], ['A2']] ``` Receive a rectangular array around the cells with values in them. ```python >>> worksheet.get("A1:B4", pad_values=True) [['A1', 'B1'], ['A2', '']] ``` Receive an array matching the request size regardless of if values are empty or not. ```python >>> worksheet.get("A1:B4", maintain_size=True) [['A1', 'B1'], ['A2', ''], ['', ''], ['', '']] ``` ### Finding a Cell ```python # Find a cell with exact string value cell = worksheet.find("Dough") print("Found something at R%sC%s" % (cell.row, cell.col)) # Find a cell matching a regular expression amount_re = re.compile(r'(Big|Enormous) dough') cell = worksheet.find(amount_re) ``` ### Finding All Matched Cells ```python # Find all cells with string value cell_list = worksheet.findall("Rug store") # Find all cells with regexp criteria_re = re.compile(r'(Small|Room-tiering) rug') cell_list = worksheet.findall(criteria_re) ``` ### Updating Cells ```python # Update a single cell worksheet.update_acell('B1', 'Bingo!') # Update a range worksheet.update([[1, 2], [3, 4]], 'A1:B2') # Update multiple ranges at once worksheet.batch_update([{ 'range': 'A1:B2', 'values': [['A1', 'B1'], ['A2', 'B2']], }, { 'range': 'J42:K43', 'values': [[1, 2], [3, 4]], }]) ``` ### Get unformatted cell value or formula ```python from gspread.utils import ValueRenderOption # Get formatted cell value as displayed in the UI >>> worksheet.get("A1:B2") [['$12.00']] # Get unformatted value from the same cell range >>> worksheet.get("A1:B2", value_render_option=ValueRenderOption.unformatted) [[12]] # Get formula from a cell >>> worksheet.get("C2:D2", value_render_option=ValueRenderOption.formula) [['=1/1024']] ``` ### Add data validation to a range ```python import gspread from gspread.utils import ValidationConditionType # Restrict the input to greater than 10 in a single cell worksheet.add_validation( 'A1', ValidationConditionType.number_greater, [10], strict=True, inputMessage='Value must be greater than 10', ) # Restrict the input to Yes/No for a specific range with dropdown worksheet.add_validation( 'C2:C7', ValidationConditionType.one_of_list, ['Yes', 'No',] showCustomUi=True ) ``` ## Documentation [Documentation]\: [https://gspread.readthedocs.io/][Documentation] [Documentation]: https://gspread.readthedocs.io/en/latest/ ### Ask Questions The best way to get an answer to a question is to ask on [Stack Overflow with a gspread tag](http://stackoverflow.com/questions/tagged/gspread?sort=votes&pageSize=50). ## Contributors [List of contributors](https://github.com/burnash/gspread/graphs/contributors) ## How to Contribute Please make sure to take a moment and read the [Code of Conduct](https://github.com/burnash/gspread/blob/master/.github/CODE_OF_CONDUCT.md). ### Report Issues Please report bugs and suggest features via the [GitHub Issues](https://github.com/burnash/gspread/issues). Before opening an issue, search the tracker for possible duplicates. If you find a duplicate, please add a comment saying that you encountered the problem as well. ### Improve Documentation [Documentation](https://gspread.readthedocs.io/) is as important as code. If you know how to make it more consistent, readable and clear, please submit a pull request. The documentation files are in [`docs`](https://github.com/burnash/gspread/tree/master/docs) folder, use [reStructuredText](http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html#rst-index) markup and rendered by [Sphinx](http://www.sphinx-doc.org/). ### Contribute code Please make sure to read the [Contributing Guide](https://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md) before making a pull request. ================================================ FILE: docs/_templates/layout.html ================================================ {% extends "!layout.html" %} {% block htmltitle %} {{ super() }} {% endblock %} {% block extrabody %} {% endblock %} {% block footer %} {{ super() }} {% endblock %} ================================================ FILE: docs/advanced.rst ================================================ Advanced Usage ============== Custom Authentication --------------------- Google Colaboratory ~~~~~~~~~~~~~~~~~~~ If you familiar with the Jupyter Notebook, `Google Colaboratory `_ is probably the easiest way to get started using gspread:: from google.colab import auth auth.authenticate_user() import gspread from google.auth import default creds, _ = default() gc = gspread.authorize(creds) See the full example in the `External data: Local Files, Drive, Sheets, and Cloud Storage `_ notebook. Using Authlib ~~~~~~~~~~~~~ Using ``Authlib`` instead of ``google-auth``. Similar to `google.auth.transport.requests.AuthorizedSession `_ Authlib's ``AssertionSession`` can automatically refresh tokens.:: import json from gspread import Client from authlib.integrations.requests_client import AssertionSession def create_assertion_session(conf_file, scopes, subject=None): with open(conf_file, 'r') as f: conf = json.load(f) token_url = conf['token_uri'] issuer = conf['client_email'] key = conf['private_key'] key_id = conf.get('private_key_id') header = {'alg': 'RS256'} if key_id: header['kid'] = key_id # Google puts scope in payload claims = {'scope': ' '.join(scopes)} return AssertionSession( grant_type=AssertionSession.JWT_BEARER_GRANT_TYPE, token_endpoint=token_url, issuer=issuer, audience=token_url, claims=claims, subject=subject, key=key, header=header, ) scopes = [ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive', ] session = create_assertion_session('your-google-conf.json', scopes) gc = Client(None, session) wks = gc.open("Where is the money Lebowski?").sheet1 wks.update_acell('B2', "it's down there somewhere, let me take another look.") # Fetch a cell range cell_list = wks.range('A1:B7') ================================================ FILE: docs/api/auth.rst ================================================ Auth ==== .. automodule:: gspread.auth :members: ================================================ FILE: docs/api/client.rst ================================================ Client ====== .. autoclass:: gspread.Client :members: ================================================ FILE: docs/api/exceptions.rst ================================================ Exceptions ========== .. autoexception:: gspread.exceptions.APIError .. autoexception:: gspread.exceptions.GSpreadException .. autoexception:: gspread.exceptions.IncorrectCellLabel .. autoexception:: gspread.exceptions.InvalidInputValue .. autoexception:: gspread.exceptions.NoValidUrlKeyFound .. autoexception:: gspread.exceptions.SpreadsheetNotFound .. autoexception:: gspread.exceptions.UnSupportedExportFormat .. autoexception:: gspread.exceptions.WorksheetNotFound ================================================ FILE: docs/api/http_client.rst ================================================ HTTP Client =========== .. note:: This class is not intended to be used directly. It is used by all gspread models to interact with the Google API .. autoclass:: gspread.HTTPClient :members: .. autoclass:: gspread.BackOffHTTPClient :members: ================================================ FILE: docs/api/index.rst ================================================ API Reference ============= .. toctree:: :maxdepth: 2 top-level auth client http_client models/index utils exceptions ================================================ FILE: docs/api/models/cell.rst ================================================ Cell ==== .. autoclass:: gspread.cell.Cell :members: ================================================ FILE: docs/api/models/index.rst ================================================ Models ====== The models represent common spreadsheet entities: :class:`a spreadsheet `, :class:`a worksheet ` and :class:`a cell `. .. note:: The classes described below should not be instantiated by the end-user. Their instances result from calling other objects' methods. .. toctree:: :maxdepth: 2 spreadsheet worksheet cell ================================================ FILE: docs/api/models/spreadsheet.rst ================================================ Spreadsheet =========== .. autoclass:: gspread.spreadsheet.Spreadsheet :members: ================================================ FILE: docs/api/models/worksheet.rst ================================================ Worksheet ========= ValueRange ---------- .. autoclass:: gspread.worksheet.ValueRange :members: Worksheet --------- .. autoclass:: gspread.worksheet.Worksheet :members: ================================================ FILE: docs/api/top-level.rst ================================================ Top level ========= .. module:: gspread .. autofunction:: oauth .. autofunction:: service_account .. autofunction:: authorize ================================================ FILE: docs/api/utils.rst ================================================ Utils ===== .. automodule:: gspread.utils :members: :undoc-members: ================================================ FILE: docs/community.rst ================================================ Community Extensions ==================== .. _gspread-formating-label: gspread-formating ~~~~~~~~~~~~~~~~~ `gspread-formatting `_ offers extensive functionality to help you when you go beyond basic format provided by ``gspread``. .. _gspread-pandas-label: Using gspread with pandas ~~~~~~~~~~~~~~~~~~~~~~~~~ You can find the below libraries to use gspread with pandas: * `gspread-pandas `_ * `gspread-dataframe `_ .. _gspread-orm-label: Object Relational Mappers (ORMs) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The `gspread-models `_ package provides a straightforward and intuitive model-based query interface, making it easy to interact with Google Sheets as if it were more like a database. ================================================ FILE: docs/conf.py ================================================ # # gspread documentation build configuration file, created by # sphinx-quickstart on Thu Dec 15 14:44:32 2011. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import os import sys from datetime import date # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath("..")) from gspread import __version__ # noqa: E402 # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ "sphinx.ext.doctest", "sphinx.ext.todo", "sphinx.ext.coverage", "sphinx.ext.ifconfig", "sphinx.ext.intersphinx", "sphinx_toolbox.more_autodoc.autonamedtuple", "sphinx.ext.autodoc", ] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # The suffix of source filenames. source_suffix = ".rst" # The encoding of source files. # source_encoding = 'utf-8-sig' # The master toctree document. master_doc = "index" # General information about the project. project = "gspread" copyright = "%s, Anton Burnashev" % date.today().year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = __version__ # The full version, including alpha/beta/rc tags. release = version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: # today = '' # Else, today_fmt is used as the format for a strftime call. # today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all documents. # default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. # add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). # add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. # show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. # modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = "sphinx_rtd_theme" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. # html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". # html_title = None # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. # html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. # html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". # html_static_path = ["_static"] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. # html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. # html_use_smartypants = True # Custom sidebar templates, maps document names to template names. # html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. # html_additional_pages = {} # If false, no module index is generated. # html_domain_indices = True # If false, no index is generated. # html_use_index = True # If true, the index is split into individual pages for each letter. # html_split_index = False # If true, links to the reST sources are added to the pages. # html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. # html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. # html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. # html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). # html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = "gspreaddoc" # -- Options for LaTeX output -------------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. # 'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ("index", "gspread.tex", "gspread Documentation", "Anton Burnashev", "manual"), ] # The name of an image file (relative to this directory) to place at the top of # the title page. # latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. # latex_use_parts = False # If true, show page references after internal links. # latex_show_pagerefs = False # If true, show URL addresses after external links. # latex_show_urls = False # Documents to append as an appendix to all manuals. # latex_appendices = [] # If false, no module index is generated. # latex_domain_indices = True # -- Options for manual page output -------------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [("index", "gspread", "gspread Documentation", ["Anton Burnashev"], 1)] # If true, show URL addresses after external links. # man_show_urls = False # -- Options for Texinfo output ------------------------------------------------ # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ( "index", "gspread", "gspread Documentation", "Anton Burnashev", "gspread", "Google Spreadsheets Python API.", "Miscellaneous", ), ] # Documents to append as an appendix to all manuals. # texinfo_appendices = [] # If false, no module index is generated. # texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. # texinfo_show_urls = 'footnote' # -- Options for Epub output --------------------------------------------------- # Bibliographic Dublin Core info. epub_title = "gspread" epub_author = "Anton Burnashev" epub_publisher = "Anton Burnashev" epub_copyright = "%s, Anton Burnashev" % date.today().year # The language of the text. It defaults to the language option # or en if the language is not set. # epub_language = '' # The scheme of the identifier. Typical schemes are ISBN or URL. # epub_scheme = '' # The unique identifier of the text. This can be a ISBN number # or the project homepage. # epub_identifier = '' # A unique identification for the text. # epub_uid = '' # A tuple containing the cover image and cover page html template filenames. # epub_cover = () # HTML files that should be inserted before the pages created by sphinx. # The format is a list of tuples containing the path and title. # epub_pre_files = [] # HTML files that should be inserted after the pages created by sphinx. # The format is a list of tuples containing the path and title. # epub_post_files = [] # A list of files that should not be packed into the epub file. # epub_exclude_files = [] # The depth of the table of contents in toc.ncx. # epub_tocdepth = 3 # Allow duplicate toc entries. # epub_tocdup = True # Intersphinx configuration intersphinx_mapping = { "python": ("https://docs.python.org/3.6", (None, "python-inv.txt")), } ================================================ FILE: docs/index.rst ================================================ gspread ======= `gspread`_ is a Python API for Google Sheets. Features: - Google Sheets API v4. - Open a spreadsheet by title, key or url. - Read, write, and format cell ranges. - Sharing and access control. - Batching updates. Installation ------------ .. code:: sh pip install gspread Requirements: Python 3+. Quick Example ------------- .. code:: python import gspread gc = gspread.service_account() # Open a sheet from a spreadsheet in one go wks = gc.open("Where is the money Lebowski?").sheet1 # Update a range of cells using the top left corner address wks.update([[1, 2], [3, 4]], 'A1') # Or update a single cell wks.update_acell('B42', "it's down there somewhere, let me take another look.") # Format the header wks.format('A1:B1', {'textFormat': {'bold': True}}) Getting Started --------------- .. toctree:: :maxdepth: 2 oauth2 Usage ----- .. toctree:: :maxdepth: 2 user-guide Advanced -------- .. toctree:: :maxdepth: 2 advanced Community extensions -------------------- .. toctree:: :maxdepth: 2 community API Documentation --------------------------- .. toctree:: :maxdepth: 2 api/index How to Contribute ----------------- Please make sure to take a moment and read the `Code of Conduct`_. Ask Questions ~~~~~~~~~~~~~ The best way to get an answer to a question is to ask on `Stack Overflow with a gspread tag`_. Report Issues ~~~~~~~~~~~~~ Please report bugs and suggest features via the `GitHub Issues`_. Before opening an issue, search the tracker for possible duplicates. If you find a duplicate, please add a comment saying that you encountered the problem as well. Contribute code ~~~~~~~~~~~~~~~ Please make sure to read the `Contributing Guide`_ before making a pull request. Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` .. _gspread: https://github.com/burnash/gspread .. _Obtain OAuth2 credentials from Google Developers Console: oauth2.html .. _Code of Conduct: https://github.com/burnash/gspread/blob/master/.github/CODE_OF_CONDUCT.md .. _Stack Overflow with a gspread tag: http://stackoverflow.com/questions/tagged/gspread?sort=votes&pageSize=50 .. _GitHub Issues: https://github.com/burnash/gspread/issues .. _Contributing Guide: https://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md ================================================ FILE: docs/oauth2.rst ================================================ Authentication ============== To access spreadsheets your application needs to authenticate itself with the Google Sheets API. Choose from the following options. #. Create an :ref:`API key ` if you’d like to only open public spreadsheets. #. (or) Create a :ref:`OAuth Client ID ` if you’d like to access spreadsheets on behalf of end users (including yourself). - When your application runs, it will prompt the user to authorize it. #. (or) Create a :ref:`Service Account ` to access spreadsheets as a standalone bot. - Service accounts get their own email address, so can be authorized by sharing the Sheet with the account in the same way it is shared with a person. - Service accounts don't need any explicit permissions to access Sheets that are shared to "anyone with the URL". An API Key is the easiest option, but to access private Sheets you need authorization. To provide that interactively, use an OAuth Client ID. To pre-configure authorization, use a Service Account. .. _enable-api-access: Enable API Access for a Project ------------------------------- 1. Head to `Google Developers Console `_ and create a new project (or select the one you already have). 2. In the box labeled "Search for APIs and Services", search for "Google Drive API" and enable it. 3. In the box labeled "Search for APIs and Services", search for "Google Sheets API" and enable it. .. _service-account: For Bots: Using Service Account ------------------------------- A service account is a special type of Google account intended to represent a non-human user that needs to authenticate and be authorized to access data in Google APIs [sic]. Since it's a separate account, by default it does not have access to any spreadsheet until you share it with this account. Just like any other Google account. Here's how to get one: 1. :ref:`enable-api-access` if you haven't done it yet. 2. Go to "APIs & Services > Credentials" and choose "Create credentials > Service account key". 3. Fill out the form 4. Click "Create" and "Done". 5. Press "Manage service accounts" above Service Accounts. 6. Press on **⋮** near recently created service account and select "Manage keys" and then click on "ADD KEY > Create new key". 7. Select JSON key type and press "Create". You will automatically download a JSON file with credentials. It may look like this: :: { "type": "service_account", "project_id": "api-project-XXX", "private_key_id": "2cd … ba4", "private_key": "-----BEGIN PRIVATE KEY-----\nNrDyLw … jINQh/9\n-----END PRIVATE KEY-----\n", "client_email": "473000000000-yoursisdifferent@developer.gserviceaccount.com", "client_id": "473 … hd.apps.googleusercontent.com", ... } Remember the path to the downloaded credentials file. Also, in the next step you'll need the value of *client_email* from this file. 6. Very important! Go to your spreadsheet and share it with a *client_email* from the step above. Just like you do with any other Google account. If you don't do this, you'll get a ``gspread.exceptions.SpreadsheetNotFound`` exception when trying to access this spreadsheet from your application or a script. 7. Move the downloaded file to ``~/.config/gspread/service_account.json``. Windows users should put this file to ``%APPDATA%\gspread\service_account.json``. 8. Create a new Python file with this code: :: import gspread gc = gspread.service_account() sh = gc.open("Example spreadsheet") print(sh.sheet1.get('A1')) Ta-da! .. NOTE:: If you want to store the credentials file somewhere else, specify the path to `service_account.json` in :meth:`~gspread.service_account`: :: gc = gspread.service_account(filename='path/to/the/downloaded/file.json') Make sure you store the credentials file in a safe place. For the curious, under the hood :meth:`~gspread.service_account` loads your credentials and authorizes gspread. Similarly to the code that has been used for authentication prior to the gspread version 3.6: :: from google.oauth2.service_account import Credentials scopes = [ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] credentials = Credentials.from_service_account_file( 'path/to/the/downloaded/file.json', scopes=scopes ) gc = gspread.authorize(credentials) There is also the option to pass credentials as a dictionary: :: import gspread credentials = { "type": "service_account", "project_id": "api-project-XXX", "private_key_id": "2cd … ba4", "private_key": "-----BEGIN PRIVATE KEY-----\nNrDyLw … jINQh/9\n-----END PRIVATE KEY-----\n", "client_email": "473000000000-yoursisdifferent@developer.gserviceaccount.com", "client_id": "473 … hd.apps.googleusercontent.com", ... } gc = gspread.service_account_from_dict(credentials) sh = gc.open("Example spreadsheet") print(sh.sheet1.get('A1')) .. NOTE:: Older versions of gspread have used `oauth2client `_. Google has `deprecated `_ it in favor of `google-auth`. If you're still using `oauth2client` credentials, the library will convert these to `google-auth` for you, but you can change your code to use the new credentials to make sure nothing breaks in the future. .. _oauth-client-id: For Bots Running inside GCP (Cloud Run, Cloud Functions, Cloud Build): Using Application-Default Credentials ------------------------------------------------------------------------------------------------------------ When your code runs *inside* Google Cloud, every container, function, or build already has an **identity**—the service account the runtime is configured to use. Google injects a short-lived OAuth 2.0 access token for that service account, so you don’t need to ship or mount a JSON key file. All you have to do is: 1. :ref:`enable-api-access` if you haven’t done it yet (Sheets API **and** Drive API). 2. Attach a service account to the Cloud Run service / Cloud Function / Cloud Build step. Share the target spreadsheet with the service account’s **email address** (e.g. `my-run-sa@project.iam.gserviceaccount.com`) just as you would with a colleague. 3. Use `google.auth.default()` to pick up the in-runtime credentials and hand them to gspread: :: import google.auth import gspread SCOPES = [ "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/drive", ] creds, _ = google.auth.default(scopes=SCOPES) gc = gspread.authorize(creds) sh = gc.open_by_key("1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms") print(sh.sheet1.get("A1")) * No `GOOGLE_APPLICATION_CREDENTIALS` environment variable. * No JSON key copied into the container. * Tokens are rotated automatically by the platform. 4. **Local testing:** run :: gcloud auth application-default login \ --scopes=https://www.googleapis.com/auth/drive,\ https://www.googleapis.com/auth/spreadsheets to emulate the same Application-Default Credentials flow on your laptop. .. note:: If you forget to pass the Sheets **and** Drive scopes when calling ``google.auth.default(scopes=...)`` you will get a *403: insufficient permissions* error even though the code is running on GCP. Always include both scopes. .. warning:: ADC proves *who* your code is, but Sheets access is still controlled by the spreadsheet’s share list. Make sure the service account is listed there, otherwise you’ll see ``gspread.exceptions.SpreadsheetNotFound``. For End Users: Using OAuth Client ID ------------------------------------ This is the case where your application or a script is accessing spreadsheets on behalf of an end user. When you use this scenario, your application or a script will ask the end user (or yourself if you're running it) to grant access to the user's data. 1. :ref:`enable-api-access` if you haven't done it yet. #. Go to "APIs & Services > OAuth Consent Screen." Click the button for "Configure Consent Screen". a. In the "1 OAuth consent screen" tab, give your app a name and fill the "User support email" and "Developer contact information". Click "SAVE AND CONTINUE". #. There is no need to fill in anything in the tab "2 Scopes", just click "SAVE AND CONTINUE". #. In the tab "3 Test users", add the Google account email of the end user, typically your own Google email. Click "SAVE AND CONTINUE". #. Double check the "4 Summary" presented and click "BACK TO DASHBOARD". 3. Go to "APIs & Services > Credentials" #. Click "+ Create credentials" at the top, then select "OAuth client ID". #. Select "Desktop app", name the credentials and click "Create". Click "Ok" in the "OAuth client created" popup. #. Download the credentials by clicking the Download JSON button in "OAuth 2.0 Client IDs" section. #. Move the downloaded file to ``~/.config/gspread/credentials.json``. Windows users should put this file to ``%APPDATA%\gspread\credentials.json``. Create a new Python file with this code: :: import gspread gc = gspread.oauth() sh = gc.open("Example spreadsheet") print(sh.sheet1.get('A1')) When you run this code, it launches a browser asking you for authentication. Follow the instruction on the web page. Once finished, gspread stores authorized credentials in the config directory next to `credentials.json`. You only need to do authorization in the browser once, following runs will reuse stored credentials. .. NOTE:: If you want to store the credentials file somewhere else, specify the path to `credentials.json` and `authorized_user.json` in :meth:`~gspread.oauth`: :: gc = gspread.oauth( credentials_filename='path/to/the/credentials.json', authorized_user_filename='path/to/the/authorized_user.json' ) Make sure you store the credentials file in a safe place. There is also the option to pass your credentials directly as a python dict. This way you don't have to store them as files or you can store them in your favorite password manager. :: import gspread credentials = { "installed": { "client_id": "12345678901234567890abcdefghijklmn.apps.googleusercontent.com", "project_id": "my-project1234", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "token_uri": "https://oauth2.googleapis.com/token", ... } } gc, authorized_user = gspread.oauth_from_dict(credentials) sh = gc.open("Example spreadsheet") print(sh.sheet1.get('A1')) Once authenticated you must store the returned json string containing your authenticated user information. Provide that details as a python dict as second argument in your next `oauth` request to be directly authenticated and skip the flow. .. NOTE:: The second time if your authorized user has not expired, you can omit the credentials. Be aware, if the authorized user has expired your credentials are required to authenticate again. :: import gspread credentials = { "installed": { "client_id": "12345678901234567890abcdefghijklmn.apps.googleusercontent.com", "project_id": "my-project1234", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "token_uri": "https://oauth2.googleapis.com/token", ... } } authorized_user = { "refresh_token": "8//ThisALONGTOkEn....", "token_uri": "https://oauth2.googleapis.com/token", "client_id": "12345678901234567890abcdefghijklmn.apps.googleusercontent.com", "client_secret": "MySecRet....", "scopes": [ "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/drive" ], "expiry": "1070-01-01T00:00:00.000001Z" } gc, authorized_user = gspread.oauth_from_dict(credentials, authorized_user) sh = gc.open("Example spreadsheet") print(sh.sheet1.get('A1')) .. warning:: Security credentials file and authorized credentials contain sensitive data. **Do not share these files with others** and treat them like private keys. If you are concerned about giving the application access to your spreadsheets and Drive, use Service Accounts. .. NOTE:: The user interface of Google Developers Console may be different when you're reading this. If you find that this document is out of sync with the actual UI, please update it. Improvements to the documentation are always welcome. Click **Edit on GitHub** in the top right corner of the page, make it better and submit a PR. .. _api-key: For public spreadsheets only ---------------------------- An API key is a token that allows an application to open public spreadsheet files. Here's how to get one: 1. :ref:`enable-api-access` if you haven't done it yet. 2. Go to "APIs & Services > Credentials" and choose "Create credentials > API key" 3. A pop-up should display your newly created key. 4. Copy the key. 5. That's it your key is created. .. note:: You can access your key any time later, come back to the "APIs & Services > Credentials" page, you'll be able to see your key again. 6. Create a new Python file with this code: :: import gspread gc = gspread.api_key("") sh = gc.open_by_key("1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms") print(sh.sheet1.get('A1')) Ta-da ! .. note:: You can only open public keys, this means you can only open spreadsheet files using the methods: ``gc.open_by_key`` and ``gc.open_by_url``. The method ``gc.open()`` searches your private files to find the one with a matching name so it will never work. ================================================ FILE: docs/requirements.txt ================================================ sphinx==6.2.1 sphinx_rtd_theme sphinx-toolbox ================================================ FILE: docs/user-guide.rst ================================================ Examples of gspread Usage ========================= If you haven't yet authorized your app, read :doc:`oauth2` first. Opening a Spreadsheet ~~~~~~~~~~~~~~~~~~~~~ You can open a spreadsheet by its title as it appears in Google Docs: .. code:: python sh = gc.open('My poor gym results') .. NOTE:: If you have multiple Google Sheets with the same title, only the latest sheet will be opened by this method without throwing an error. It's recommended to open the sheet using its unique ID instead (see below) If you want to be specific, use a key (which can be extracted from the spreadsheet's url): .. code:: python sht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE') Or, if you feel really lazy to extract that key, paste the entire spreadsheet's url .. code:: python sht2 = gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl') Creating a Spreadsheet ~~~~~~~~~~~~~~~~~~~~~~ Use :meth:`~gspread.Client.create` to create a new blank spreadsheet: .. code:: python sh = gc.create('A new spreadsheet') .. NOTE:: If you're using a :ref:`service account `, this new spreadsheet will be visible only to this account. To be able to access newly created spreadsheet from Google Sheets with your own Google account you *must* share it with your email. See how to share a spreadsheet in the section below. Sharing a Spreadsheet ~~~~~~~~~~~~~~~~~~~~~ If your email is *otto@example.com* you can share the newly created spreadsheet with yourself: .. code:: python sh.share('otto@example.com', perm_type='user', role='writer') See :meth:`~gspread.models.Spreadsheet.share` documentation for a full list of accepted parameters. Selecting a Worksheet ~~~~~~~~~~~~~~~~~~~~~ Select worksheet by index. Worksheet indexes start from zero: .. code:: python worksheet = sh.get_worksheet(0) Or by title: .. code:: python worksheet = sh.worksheet("January") Or the most common case: *Sheet1*: .. code:: python worksheet = sh.sheet1 To get a list of all worksheets: .. code:: python worksheet_list = sh.worksheets() Creating a Worksheet ~~~~~~~~~~~~~~~~~~~~ .. code:: python worksheet = sh.add_worksheet(title="A worksheet", rows=100, cols=20) Deleting a Worksheet ~~~~~~~~~~~~~~~~~~~~ .. code:: python sh.del_worksheet(worksheet) Updating a Worksheet's name and color ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code:: python worksheet.update_title("December Transactions") worksheet.update_tab_color({"red": 1, "green": 0.5, "blue": 0.5}) Getting a Cell Value ~~~~~~~~~~~~~~~~~~~~ Using `A1 notation `_: .. code:: python val = worksheet.acell('B1').value Or row and column coordinates: .. code:: python val = worksheet.cell(1, 2).value If you want to get a cell formula: .. code:: python cell = worksheet.acell('B1', value_render_option='FORMULA').value # or cell = worksheet.cell(1, 2, value_render_option='FORMULA').value Getting Unformatted Cell Value ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Get the Unformatted value from a cell. Example: cells formatted as currency will display with the selected currency but they actual value is regular number. Get the formatted (as displayed) value: .. code:: python worksheet.get("A1:B2") Results in: ``[['$12.00']]`` Get the unformatted value: .. code:: python from gspread.utils import ValueRenderOption worksheet.get("A1:B2", value_render_option=ValueRenderOption.unformatted) Results in: ``[[12]]`` Getting Cell formula ~~~~~~~~~~~~~~~~~~~~ Get the formula from a cell instead of the resulting value: .. code:: python from gspread.utils import ValueRenderOption worksheet.get("G6", value_render_option=ValueRenderOption.formula) Resulsts in: ``[['=1/1024']]`` Getting All Values From a Row or a Column ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Get all values from the first row: .. code:: python values_list = worksheet.row_values(1) Get all values from the first column: .. code:: python values_list = worksheet.col_values(1) .. NOTE:: So far we've been fetching a limited amount of data from a sheet. This works great until you need to get values from hundreds of cells or iterating over many rows or columns. Under the hood, gspread uses `Google Sheets API v4 `_. Most of the time when you call a gspread method to fetch or update a sheet gspread produces one HTTP API call. HTTP calls have performance costs. So if you find your app fetching values one by one in a loop or iterating over rows or columns you can improve the performance of the app by fetching data in one go. What's more, Sheets API v4 introduced `Usage Limits `_ (as of this writing, 300 requests per 60 seconds per project, and 60 requests per 60 seconds per user). When your application hits that limit, you get an :exc:`~gspread.exceptions.APIError` `429 RESOURCE_EXHAUSTED`. Here are the methods that may help you to reduce API calls: * :meth:`~gspread.models.Worksheet.get_all_values` fetches values from all of the cells of the sheet. * :meth:`~gspread.models.Worksheet.get` fetches all values from a range of cells. * :meth:`~gspread.models.Worksheet.batch_get` can fetch values from multiple ranges of cells with one API call. * :meth:`~gspread.models.Worksheet.update` lets you update a range of cells with a list of lists. * :meth:`~gspread.models.Worksheet.batch_update` lets you update multiple ranges of cells with one API call. Getting All Values From a Worksheet as a List of Lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code:: python list_of_lists = worksheet.get_all_values() Getting All Values From a Worksheet as a List of Dictionaries ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code:: python list_of_dicts = worksheet.get_all_records() Finding a Cell ~~~~~~~~~~~~~~ Find a cell matching a string: .. code:: python cell = worksheet.find("Dough") print("Found something at R%sC%s" % (cell.row, cell.col)) Find a cell matching a regular expression .. code:: python amount_re = re.compile(r'(Big|Enormous) dough') cell = worksheet.find(amount_re) `find` returns `None` if value is not Found Finding All Matched Cells ~~~~~~~~~~~~~~~~~~~~~~~~~ Find all cells matching a string: .. code:: python cell_list = worksheet.findall("Rug store") Find all cells matching a regexp: .. code:: python criteria_re = re.compile(r'(Small|Room-tiering) rug') cell_list = worksheet.findall(criteria_re) Clear A Worksheet ~~~~~~~~~~~~~~~~~ Clear one or multiple cells ranges at once: .. code:: python worksheet.batch_clear(["A1:B1", "C2:E2", "my_named_range"]) Clear the entire worksheet: .. code:: python worksheet.clear() Cell Object ~~~~~~~~~~~ Each cell has a value and coordinates properties: .. code:: python value = cell.value row_number = cell.row column_number = cell.col Updating Cells ~~~~~~~~~~~~~~ Using `A1 notation `_: .. code:: python worksheet.update_acell('B1', 'Bingo!') Or row and column coordinates: .. code:: python worksheet.update_cell(1, 2, 'Bingo!') Update a range .. code:: python worksheet.update([[1, 2], [3, 4]], 'A1:B2') Adding Data Validation ~~~~~~~~~~~~~~~~~~~~~~ You can add a strict validation to a cell. .. code:: python ws.add_validation( 'A1', ValidationConditionType.number_greater, [10], strict=True, inputMessage='Value must be greater than 10', ) Or add validation with a drop down. .. code:: python worksheet.add_validation( 'C2:C7', ValidationConditionType.one_of_list, ['Yes', 'No',] showCustomUi=True ) Check out the api docs for `DataValidationRule`_ and `CondtionType`_ for more details. .. _CondtionType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#ConditionType .. _DataValidationRule: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#DataValidationRule Extract table ~~~~~~~~~~~~~ Gspread provides a function to extract a data table. A data table is defined as a rectangular table that stops either on the **first empty** cell or the **enge of the sheet**. You can extract table from any address by providing the top left corner of the desired table. Gspread provides 3 directions for searching the end of the table: * :attr:`~gspread.utils.TableDirection.right`: extract a single row searching on the right of the starting cell * :attr:`~gspread.utils.TableDirection.down`: extract a single column searching on the bottom of the starting cell * :attr:`~gspread.utils.TableDirection.table`: extract a rectangular table by first searching right from starting cell, then searching down from starting cell. .. note:: Gspread will not look for empty cell inside the table. it only look at the top row and first column. Example extracting a table from the below sample sheet: .. list-table:: Find table :header-rows: 1 * - ID - Name - Universe - Super power * - 1 - Batman - DC - Very rich * - 2 - DeadPool - Marvel - self healing * - 3 - Superman - DC - super human * - - \- - \- - \- * - 5 - Lavigne958 - - maintains Gspread * - 6 - Alifee - - maintains Gspread Using the below code will result in rows 2 to 4: .. code:: python worksheet.expand("A2") [ ["Batman", "DC", "Very rich"], ["DeadPool", "Marvel", "self healing"], ["Superman", "DC", "super human"], ] Formatting ~~~~~~~~~~ Here's an example of basic formatting. Set **A1:B1** text format to bold: .. code:: python worksheet.format('A1:B1', {'textFormat': {'bold': True}}) Color the background of **A2:B2** cell range in black, change horizontal alignment, text color and font size: .. code:: python worksheet.format("A2:B2", { "backgroundColor": { "red": 0.0, "green": 0.0, "blue": 0.0 }, "horizontalAlignment": "CENTER", "textFormat": { "foregroundColor": { "red": 1.0, "green": 1.0, "blue": 1.0 }, "fontSize": 12, "bold": True } }) The second argument to :meth:`~gspread.models.Worksheet.format` is a dictionary containing the fields to update. A full specification of format options is available at `CellFormat `_ in Sheet API Reference. .. Tip:: for more complex formatting see :ref:`gspread-formating-label`. Using gspread with pandas ~~~~~~~~~~~~~~~~~~~~~~~~~ `pandas `_ is a popular library for data analysis. The simplest way to get data from a sheet to a pandas DataFrame is with :meth:`~gspread.models.Worksheet.get_all_records`: .. code:: python import pandas as pd dataframe = pd.DataFrame(worksheet.get_all_records()) Here's a basic example for writing a dataframe to a sheet. With :meth:`~gspread.models.Worksheet.update` we put the header of a dataframe into the first row of a sheet followed by the values of a dataframe: .. code:: python import pandas as pd worksheet.update([dataframe.columns.values.tolist()] + dataframe.values.tolist()) For advanced pandas use cases check out community section :ref:`gspread-pandas-label` Using gspread with NumPy ~~~~~~~~~~~~~~~~~~~~~~~~ `NumPy `_ is a library for scientific computing in Python. It provides tools for working with high performance multi-dimensional arrays. Read contents of a sheet into a NumPy array: .. code:: python import numpy as np array = np.array(worksheet.get_all_values()) The code above assumes that your data starts from the first row of the sheet. If you have a header row in the first row, you need replace ``worksheet.get_all_values()`` with ``worksheet.get_all_values()[1:]``. Write a NumPy array to a sheet: .. code:: python import numpy as np array = np.array([[1, 2, 3], [4, 5, 6]]) # Write the array to worksheet starting from the A2 cell worksheet.update(array.tolist(), 'A2') ================================================ FILE: gspread/__init__.py ================================================ """Google Spreadsheets Python API""" __version__ = "6.2.1" __author__ = "Anton Burnashev" from .auth import ( api_key, authorize, oauth, oauth_from_dict, service_account, service_account_from_dict, ) from .cell import Cell from .client import Client from .exceptions import ( GSpreadException, IncorrectCellLabel, NoValidUrlKeyFound, SpreadsheetNotFound, WorksheetNotFound, ) from .http_client import BackOffHTTPClient, HTTPClient from .spreadsheet import Spreadsheet from .worksheet import ValueRange, Worksheet from . import urls as urls from . import utils as utils __all__ = [ # from .auth "api_key", "authorize", "oauth", "oauth_from_dict", "service_account", "service_account_from_dict", # from .cell "Cell", # from .client "Client", # from .http_client "BackOffHTTPClient", "HTTPClient", # from .spreadsheet "Spreadsheet", # from .worksheet "Worksheet", "ValueRange", # from .exceptions "GSpreadException", "IncorrectCellLabel", "NoValidUrlKeyFound", "SpreadsheetNotFound", "WorksheetNotFound", # full module imports "urls", "utils", ] ================================================ FILE: gspread/auth.py ================================================ """ gspread.auth ~~~~~~~~~~~~ Simple authentication with OAuth. """ import json import os from pathlib import Path from typing import Any, Dict, Iterable, Mapping, Optional, Protocol, Tuple, Union from google.auth.credentials import Credentials try: from google.auth.api_key import Credentials as APIKeyCredentials GOOGLE_AUTH_API_KEY_AVAILABLE = True except ImportError: GOOGLE_AUTH_API_KEY_AVAILABLE = False from google.oauth2.credentials import Credentials as OAuthCredentials from google.oauth2.service_account import Credentials as SACredentials from google_auth_oauthlib.flow import InstalledAppFlow from requests import Session from .client import Client from .http_client import HTTPClient, HTTPClientType DEFAULT_SCOPES = [ "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/drive", ] READONLY_SCOPES = [ "https://www.googleapis.com/auth/spreadsheets.readonly", "https://www.googleapis.com/auth/drive.readonly", ] def get_config_dir( config_dir_name: str = "gspread", os_is_windows: bool = os.name == "nt" ) -> Path: r"""Construct a config dir path. By default: * `%APPDATA%\gspread` on Windows * `~/.config/gspread` everywhere else """ if os_is_windows: return Path(os.environ["APPDATA"], config_dir_name) else: return Path(Path.home(), ".config", config_dir_name) DEFAULT_CONFIG_DIR = get_config_dir() DEFAULT_CREDENTIALS_FILENAME = DEFAULT_CONFIG_DIR / "credentials.json" DEFAULT_AUTHORIZED_USER_FILENAME = DEFAULT_CONFIG_DIR / "authorized_user.json" DEFAULT_SERVICE_ACCOUNT_FILENAME = DEFAULT_CONFIG_DIR / "service_account.json" def authorize( credentials: Credentials, http_client: HTTPClientType = HTTPClient, session: Optional[Session] = None, ) -> Client: """Login to Google API using OAuth2 credentials. This is a shortcut/helper function which instantiates a client using `http_client`. By default :class:`gspread.HTTPClient` is used (but could also use :class:`gspread.BackOffHTTPClient` to avoid rate limiting). It can take an additional `requests.Session` object in order to provide you own session object. .. note:: When providing your own `requests.Session` object, use the value `None` as `credentials`. :returns: An instance of the class produced by `http_client`. :rtype: :class:`gspread.client.Client` """ return Client(auth=credentials, session=session, http_client=http_client) class FlowCallable(Protocol): """Protocol for OAuth flow callables.""" def __call__( self, client_config: Mapping[str, Any], scopes: Iterable[str], port: int = 0 ) -> OAuthCredentials: ... def local_server_flow( client_config: Mapping[str, Any], scopes: Iterable[str], port: int = 0 ) -> OAuthCredentials: """Run an OAuth flow using a local server strategy. Creates an OAuth flow and runs `google_auth_oauthlib.flow.InstalledAppFlow.run_local_server `_. This will start a local web server and open the authorization URL in the user's browser. Pass this function to ``flow`` parameter of :meth:`~gspread.oauth` to run a local server flow. """ flow = InstalledAppFlow.from_client_config(client_config, scopes) return flow.run_local_server(port=port) def load_credentials( filename: Path = DEFAULT_AUTHORIZED_USER_FILENAME, ) -> Optional[Credentials]: if filename.exists(): return OAuthCredentials.from_authorized_user_file(filename) return None def store_credentials( creds: OAuthCredentials, filename: Path = DEFAULT_AUTHORIZED_USER_FILENAME, strip: str = "token", ) -> None: filename.parent.mkdir(parents=True, exist_ok=True) with filename.open("w") as f: f.write(creds.to_json(strip)) def oauth( scopes: Iterable[str] = DEFAULT_SCOPES, flow: FlowCallable = local_server_flow, credentials_filename: Union[str, Path] = DEFAULT_CREDENTIALS_FILENAME, authorized_user_filename: Union[str, Path] = DEFAULT_AUTHORIZED_USER_FILENAME, http_client: HTTPClientType = HTTPClient, ) -> Client: r"""Authenticate with OAuth Client ID. By default this function will use the local server strategy and open the authorization URL in the user's browser:: gc = gspread.oauth() Another option is to run a console strategy. This way, the user is instructed to open the authorization URL in their browser. Once the authorization is complete, the user must then copy & paste the authorization code into the application:: gc = gspread.oauth(flow=gspread.auth.console_flow) ``scopes`` parameter defaults to read/write scope available in ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets and Drive API:: DEFAULT_SCOPES =[ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] You can also use ``gspread.auth.READONLY_SCOPES`` for read only access. Obviously any method of ``gspread`` that updates a spreadsheet **will not work** in this case:: gc = gspread.oauth(scopes=gspread.auth.READONLY_SCOPES) sh = gc.open("A spreadsheet") sh.sheet1.update_acell('A1', '42') # <-- this will not work If you're storing your user credentials in a place other than the default, you may provide a path to that file like so:: gc = gspread.oauth( credentials_filename='/alternative/path/credentials.json', authorized_user_filename='/alternative/path/authorized_user.json', ) :param list scopes: The scopes used to obtain authorization. :param function flow: OAuth flow to use for authentication. Defaults to :meth:`~gspread.auth.local_server_flow` :param str credentials_filename: Filepath (including name) pointing to a credentials `.json` file. Defaults to DEFAULT_CREDENTIALS_FILENAME: * `%APPDATA%\gspread\credentials.json` on Windows * `~/.config/gspread/credentials.json` everywhere else :param str authorized_user_filename: Filepath (including name) pointing to an authorized user `.json` file. Defaults to DEFAULT_AUTHORIZED_USER_FILENAME: * `%APPDATA%\gspread\authorized_user.json` on Windows * `~/.config/gspread/authorized_user.json` everywhere else :type http_client: :class:`gspread.http_client.HTTPClient` :param http_client: A factory function that returns a client class. Defaults to :class:`gspread.http_client.HTTPClient` (but could also use :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting) :rtype: :class:`gspread.client.Client` """ authorized_user_filename = Path(authorized_user_filename) creds = load_credentials(filename=authorized_user_filename) if not isinstance(creds, Credentials): with open(credentials_filename) as json_file: client_config = json.load(json_file) creds = flow(client_config=client_config, scopes=scopes) store_credentials(creds, filename=authorized_user_filename) return Client(auth=creds, http_client=http_client) def oauth_from_dict( credentials: Optional[Mapping[str, Any]] = None, authorized_user_info: Optional[Mapping[str, Any]] = None, scopes: Iterable[str] = DEFAULT_SCOPES, flow: FlowCallable = local_server_flow, http_client: HTTPClientType = HTTPClient, ) -> Tuple[Client, Dict[str, Any]]: r"""Authenticate with OAuth Client ID. By default this function will use the local server strategy and open the authorization URL in the user's browser:: gc = gspread.oauth_from_dict() Another option is to run a console strategy. This way, the user is instructed to open the authorization URL in their browser. Once the authorization is complete, the user must then copy & paste the authorization code into the application:: gc = gspread.oauth_from_dict(flow=gspread.auth.console_flow) ``scopes`` parameter defaults to read/write scope available in ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets and Drive API:: DEFAULT_SCOPES =[ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] You can also use ``gspread.auth.READONLY_SCOPES`` for read only access. Obviously any method of ``gspread`` that updates a spreadsheet **will not work** in this case:: gc = gspread.oauth_from_dict(scopes=gspread.auth.READONLY_SCOPES) sh = gc.open("A spreadsheet") sh.sheet1.update_acell('A1', '42') # <-- this will not work This function requires you to pass the credentials directly as a python dict. After the first authentication the function returns the authenticated user info, this can be passed again to authenticate the user without the need to run the flow again. .. code block below must be explicitly announced using code-block .. code-block:: python gc = gspread.oauth_from_dict( credentials=my_creds, authorized_user_info=my_auth_user ) :param dict credentials: The credentials from google cloud platform :param dict authorized_user_info: The authenticated user if already authenticated. :param list scopes: The scopes used to obtain authorization. :param function flow: OAuth flow to use for authentication. Defaults to :meth:`~gspread.auth.local_server_flow` :type http_client: :class:`gspread.http_client.HTTPClient` :param http_client: A factory function that returns a client class. Defaults to :class:`gspread.http_client.HTTPClient` (but could also use :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting) :rtype: (:class:`gspread.client.Client`, str) """ if authorized_user_info is not None: creds = OAuthCredentials.from_authorized_user_info(authorized_user_info, scopes) elif credentials is not None: creds = flow(client_config=credentials, scopes=scopes) else: raise ValueError("no credentials object supplied") client = Client(auth=creds, http_client=http_client) # must return the creds to the user # must strip the token an use the dedicated method from Credentials # to return a dict "safe to store". return (client, creds.to_json("token")) def service_account( filename: Union[Path, str] = DEFAULT_SERVICE_ACCOUNT_FILENAME, scopes: Iterable[str] = DEFAULT_SCOPES, http_client: HTTPClientType = HTTPClient, ) -> Client: """Authenticate using a service account. ``scopes`` parameter defaults to read/write scope available in ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets and Drive API:: DEFAULT_SCOPES =[ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] You can also use ``gspread.auth.READONLY_SCOPES`` for read only access. Obviously any method of ``gspread`` that updates a spreadsheet **will not work** in this case. :param str filename: The path to the service account json file. :param list scopes: The scopes used to obtain authorization. :type http_client: :class:`gspread.http_client.HTTPClient` :param http_client: A factory function that returns a client class. Defaults to :class:`gspread.HTTPClient` (but could also use :class:`gspread.BackOffHTTPClient` to avoid rate limiting) :rtype: :class:`gspread.client.Client` """ creds = SACredentials.from_service_account_file(filename, scopes=scopes) return Client(auth=creds, http_client=http_client) def service_account_from_dict( info: Mapping[str, Any], scopes: Iterable[str] = DEFAULT_SCOPES, http_client: HTTPClientType = HTTPClient, ) -> Client: """Authenticate using a service account (json). ``scopes`` parameter defaults to read/write scope available in ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets and Drive API:: DEFAULT_SCOPES =[ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] You can also use ``gspread.auth.READONLY_SCOPES`` for read only access. Obviously any method of ``gspread`` that updates a spreadsheet **will not work** in this case. :param info (Mapping[str, str]): The service account info in Google format :param list scopes: The scopes used to obtain authorization. :type http_client: :class:`gspread.http_client.HTTPClient` :param http_client: A factory function that returns a client class. Defaults to :class:`gspread.http_client.HTTPClient` (but could also use :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting) :rtype: :class:`gspread.client.Client` """ creds = SACredentials.from_service_account_info( info=info, scopes=scopes, ) return Client(auth=creds, http_client=http_client) def api_key(token: str, http_client: HTTPClientType = HTTPClient) -> Client: """Authenticate using an API key. Allows you to open public spreadsheet files. .. warning:: This method only allows you to open public spreadsheet files. It does not work for private spreadsheet files. :param token str: The actual API key to use :type http_client: :class:`gspread.http_client.HTTPClient` :param http_client: A factory function that returns a client class. Defaults to :class:`gspread.http_client.HTTPClient` (but could also use :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting) :rtype: :class:`gspread.client.Client` """ if GOOGLE_AUTH_API_KEY_AVAILABLE is False: raise NotImplementedError( "api_key is only available with package google.auth>=2.15.0. " 'Install it with "pip install google-auth>=2.15.0".' ) creds = APIKeyCredentials(token) return Client(auth=creds, http_client=http_client) ================================================ FILE: gspread/cell.py ================================================ """ gspread.cell ~~~~~~~~~~~~ This module contains common cells' models. """ from typing import Optional, Union from .utils import a1_to_rowcol, numericise, rowcol_to_a1 class Cell: """An instance of this class represents a single cell in a :class:`~gspread.worksheet.Worksheet`. """ def __init__(self, row: int, col: int, value: Optional[str] = "") -> None: self._row: int = row self._col: int = col #: Value of the cell. self.value: Optional[str] = value @classmethod def from_address(cls, label: str, value: str = "") -> "Cell": """Instantiate a new :class:`~gspread.cell.Cell` from an A1 notation address and a value :param string label: the A1 label of the returned cell :param string value: the value for the returned cell :rtype: Cell """ row, col = a1_to_rowcol(label) return cls(row, col, value) def __repr__(self) -> str: return "<{} R{}C{} {}>".format( self.__class__.__name__, self.row, self.col, repr(self.value), ) def __eq__(self, other: object) -> bool: if not isinstance(other, Cell): return False same_row = self.row == other.row same_col = self.col == other.col same_value = self.value == other.value return same_row and same_col and same_value @property def row(self) -> int: """Row number of the cell. :type: int """ return self._row @property def col(self) -> int: """Column number of the cell. :type: int """ return self._col @property def numeric_value(self) -> Optional[Union[int, float]]: """Numeric value of this cell. Will try to numericise this cell value, upon success will return its numeric value with the appropriate type. :type: int or float """ numeric_value = numericise(self.value, default_blank=None) # if could not convert, return None if isinstance(numeric_value, int) or isinstance(numeric_value, float): return numeric_value else: return None @property def address(self) -> str: """Cell address in A1 notation. :type: str """ return rowcol_to_a1(self.row, self.col) ================================================ FILE: gspread/client.py ================================================ """ gspread.client ~~~~~~~~~~~~~~ This module contains Client class responsible for managing spreadsheet files """ from datetime import datetime from http import HTTPStatus from typing import Any, Dict, List, Optional, Tuple, Union from google.auth.credentials import Credentials from requests import Response, Session from .exceptions import APIError, SpreadsheetNotFound from .http_client import HTTPClient, HTTPClientType, ParamsType from .spreadsheet import Spreadsheet from .urls import DRIVE_FILES_API_V3_COMMENTS_URL, DRIVE_FILES_API_V3_URL from .utils import ExportFormat, MimeType, extract_id_from_url, finditem class Client: """An instance of this class Manages Spreadsheet files It is used to: - open/create/list/delete spreadsheets - create/delete/list spreadsheet permission - etc It is the gspread entry point. It will handle creating necessary :class:`~gspread.models.Spreadsheet` instances. """ def __init__( self, auth: Credentials, session: Optional[Session] = None, http_client: HTTPClientType = HTTPClient, ) -> None: self.http_client = http_client(auth, session) @property def expiry(self) -> Optional[datetime]: """Returns the expiry date of the curenlty loaded credentials :returns: (optional) datetime the expiry date time object. .. note:: It only applies to gspread client created using oauth """ return self.http_client.auth.expiry def set_timeout( self, timeout: Optional[Union[float, Tuple[float, float]]] = None ) -> None: """How long to wait for the server to send data before giving up, as a float, or a ``(connect timeout, read timeout)`` tuple. Use value ``None`` to restore default timeout Value for ``timeout`` is in seconds (s). """ self.http_client.set_timeout(timeout) def get_file_drive_metadata(self, id: str) -> Any: """Get the metadata from the Drive API for a specific file This method is mainly here to retrieve the create/update time of a file (these metadata are only accessible from the Drive API). """ return self.http_client.get_file_drive_metadata(id) def list_spreadsheet_files( self, title: Optional[str] = None, folder_id: Optional[str] = None ) -> List[Dict[str, Any]]: """List all the spreadsheet files Will list all spreadsheet files owned by/shared with this user account. :param str title: Filter only spreadsheet files with this title :param str folder_id: Only look for spreadsheet files in this folder The parameter ``folder_id`` can be obtained from the URL when looking at a folder in a web browser as follow: ``https://drive.google.com/drive/u/0/folders/`` :returns: a list of dicts containing the keys id, name, createdTime and modifiedTime. """ files, _ = self._list_spreadsheet_files(title=title, folder_id=folder_id) return files def _list_spreadsheet_files( self, title: Optional[str] = None, folder_id: Optional[str] = None ) -> Tuple[List[Dict[str, Any]], Response]: files = [] page_token = "" url = DRIVE_FILES_API_V3_URL query = f'mimeType="{MimeType.google_sheets}"' if title: query += f' and name = "{title}"' if folder_id: query += f' and parents in "{folder_id}"' params: ParamsType = { "q": query, "pageSize": 1000, "supportsAllDrives": True, "includeItemsFromAllDrives": True, "fields": "kind,nextPageToken,files(id,name,createdTime,modifiedTime)", } while True: if page_token: params["pageToken"] = page_token response = self.http_client.request("get", url, params=params) response_json = response.json() files.extend(response_json["files"]) page_token = response_json.get("nextPageToken", None) if page_token is None: break return files, response def open(self, title: str, folder_id: Optional[str] = None) -> Spreadsheet: """Opens a spreadsheet. :param str title: A title of a spreadsheet. :param str folder_id: (optional) If specified can be used to filter spreadsheets by parent folder ID. :returns: a :class:`~gspread.models.Spreadsheet` instance. If there's more than one spreadsheet with same title the first one will be opened. :raises gspread.SpreadsheetNotFound: if no spreadsheet with specified `title` is found. >>> gc.open('My fancy spreadsheet') """ spreadsheet_files, response = self._list_spreadsheet_files(title, folder_id) try: properties = finditem( lambda x: x["name"] == title, spreadsheet_files, ) except StopIteration as ex: raise SpreadsheetNotFound(response) from ex # Drive uses different terminology properties["title"] = properties["name"] return Spreadsheet(self.http_client, properties) def open_by_key(self, key: str) -> Spreadsheet: """Opens a spreadsheet specified by `key` (a.k.a Spreadsheet ID). :param str key: A key of a spreadsheet as it appears in a URL in a browser. :returns: a :class:`~gspread.models.Spreadsheet` instance. >>> gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE') """ try: spreadsheet = Spreadsheet(self.http_client, {"id": key}) except APIError as ex: if ex.response.status_code == HTTPStatus.NOT_FOUND: raise SpreadsheetNotFound(ex.response) from ex if ex.response.status_code == HTTPStatus.FORBIDDEN: raise PermissionError from ex raise ex return spreadsheet def open_by_url(self, url: str) -> Spreadsheet: """Opens a spreadsheet specified by `url`. :param str url: URL of a spreadsheet as it appears in a browser. :returns: a :class:`~gspread.models.Spreadsheet` instance. :raises gspread.SpreadsheetNotFound: if no spreadsheet with specified `url` is found. >>> gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl') """ return self.open_by_key(extract_id_from_url(url)) def openall(self, title: Optional[str] = None) -> List[Spreadsheet]: """Opens all available spreadsheets. :param str title: (optional) If specified can be used to filter spreadsheets by title. :returns: a list of :class:`~gspread.models.Spreadsheet` instances. """ spreadsheet_files = self.list_spreadsheet_files(title) if title: spreadsheet_files = [ spread for spread in spreadsheet_files if title == spread["name"] ] return [ Spreadsheet(self.http_client, dict(title=x["name"], **x)) for x in spreadsheet_files ] def create(self, title: str, folder_id: Optional[str] = None) -> Spreadsheet: """Creates a new spreadsheet. :param str title: A title of a new spreadsheet. :param str folder_id: Id of the folder where we want to save the spreadsheet. :returns: a :class:`~gspread.models.Spreadsheet` instance. """ payload: Dict[str, Any] = { "name": title, "mimeType": MimeType.google_sheets, } params: ParamsType = { "supportsAllDrives": True, } if folder_id is not None: payload["parents"] = [folder_id] r = self.http_client.request( "post", DRIVE_FILES_API_V3_URL, json=payload, params=params ) spreadsheet_id = r.json()["id"] return self.open_by_key(spreadsheet_id) def export(self, file_id: str, format: str = ExportFormat.PDF) -> bytes: """Export the spreadsheet in the given format. :param str file_id: The key of the spreadsheet to export :param str format: The format of the resulting file. Possible values are: * ``ExportFormat.PDF`` * ``ExportFormat.EXCEL`` * ``ExportFormat.CSV`` * ``ExportFormat.OPEN_OFFICE_SHEET`` * ``ExportFormat.TSV`` * ``ExportFormat.ZIPPED_HTML`` See `ExportFormat`_ in the Drive API. :type format: :class:`~gspread.utils.ExportFormat` :returns bytes: The content of the exported file. .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats """ return self.http_client.export(file_id=file_id, format=format) def copy( self, file_id: str, title: Optional[str] = None, copy_permissions: bool = False, folder_id: Optional[str] = None, copy_comments: bool = True, ) -> Spreadsheet: """Copies a spreadsheet. :param str file_id: A key of a spreadsheet to copy. :param str title: (optional) A title for the new spreadsheet. :param bool copy_permissions: (optional) If True, copy permissions from the original spreadsheet to the new spreadsheet. :param str folder_id: Id of the folder where we want to save the spreadsheet. :param bool copy_comments: (optional) If True, copy the comments from the original spreadsheet to the new spreadsheet. :returns: a :class:`~gspread.models.Spreadsheet` instance. .. versionadded:: 3.1.0 .. note:: If you're using custom credentials without the Drive scope, you need to add ``https://www.googleapis.com/auth/drive`` to your OAuth scope in order to use this method. Example:: scope = [ 'https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/drive' ] Otherwise, you will get an ``Insufficient Permission`` error when you try to copy a spreadsheet. """ url = "{}/{}/copy".format(DRIVE_FILES_API_V3_URL, file_id) payload: Dict[str, Any] = { "name": title, "mimeType": MimeType.google_sheets, } if folder_id is not None: payload["parents"] = [folder_id] params: ParamsType = {"supportsAllDrives": True} r = self.http_client.request("post", url, json=payload, params=params) spreadsheet_id = r.json()["id"] new_spreadsheet = self.open_by_key(spreadsheet_id) if copy_permissions is True: original = self.open_by_key(file_id) permissions = original.list_permissions() for p in permissions: if p.get("deleted"): continue # In case of domain type the domain extract the domain # In case of user/group extract the emailAddress # Otherwise use None for type 'Anyone' email_or_domain = "" if str(p["type"]) == "domain": email_or_domain = str(p["domain"]) elif str(p["type"]) in ("user", "group"): email_or_domain = str(p["emailAddress"]) new_spreadsheet.share( email_address=email_or_domain, perm_type=str(p["type"]), role=str(p["role"]), notify=False, ) if copy_comments is True: source_url = DRIVE_FILES_API_V3_COMMENTS_URL % (file_id) page_token = "" comments = [] params = { "fields": "comments/content,comments/anchor,nextPageToken", "includeDeleted": False, "pageSize": 100, # API limit to maximum 100 } while page_token is not None: params["pageToken"] = page_token res = self.http_client.request("get", source_url, params=params).json() comments.extend(res["comments"]) page_token = res.get("nextPageToken", None) destination_url = DRIVE_FILES_API_V3_COMMENTS_URL % (new_spreadsheet.id) # requesting some fields in the response is mandatory from the API. # choose 'id' randomly out of all the fields, but no need to use it for now. params = {"fields": "id"} for comment in comments: self.http_client.request( "post", destination_url, json=comment, params=params ) return new_spreadsheet def del_spreadsheet(self, file_id: str) -> None: """Deletes a spreadsheet. :param str file_id: a spreadsheet ID (a.k.a file ID). """ url = "{}/{}".format(DRIVE_FILES_API_V3_URL, file_id) params: ParamsType = {"supportsAllDrives": True} self.http_client.request("delete", url, params=params) def import_csv(self, file_id: str, data: Union[str, bytes]) -> Any: """Imports data into the first page of the spreadsheet. :param str file_id: :param str data: A CSV string of data. Example: .. code:: # Read CSV file contents content = open('file_to_import.csv', 'r').read() gc.import_csv(spreadsheet.id, content) .. note:: This method removes all other worksheets and then entirely replaces the contents of the first worksheet. """ return self.http_client.import_csv(file_id, data) def list_permissions(self, file_id: str) -> List[Dict[str, Union[str, bool]]]: """Retrieve a list of permissions for a file. :param str file_id: a spreadsheet ID (aka file ID). """ return self.http_client.list_permissions(file_id) def insert_permission( self, file_id: str, value: Optional[str] = None, perm_type: Optional[str] = None, role: Optional[str] = None, notify: bool = True, email_message: Optional[str] = None, with_link: bool = False, ) -> Response: """Creates a new permission for a file. :param str file_id: a spreadsheet ID (aka file ID). :param value: user or group e-mail address, domain name or None for 'anyone' type. :type value: str, None :param str perm_type: (optional) The account type. Allowed values are: ``user``, ``group``, ``domain``, ``anyone`` :param str role: (optional) The primary role for this user. Allowed values are: ``owner``, ``writer``, ``reader`` :param bool notify: (optional) Whether to send an email to the target user/domain. :param str email_message: (optional) An email message to be sent if ``notify=True``. :param bool with_link: (optional) Whether the link is required for this permission to be active. :returns dict: the newly created permission Examples:: # Give write permissions to otto@example.com gc.insert_permission( '0BmgG6nO_6dprnRRUWl1UFE', 'otto@example.org', perm_type='user', role='writer' ) # Make the spreadsheet publicly readable gc.insert_permission( '0BmgG6nO_6dprnRRUWl1UFE', None, perm_type='anyone', role='reader' ) """ return self.http_client.insert_permission( file_id, value, perm_type, role, notify, email_message, with_link ) def remove_permission(self, file_id: str, permission_id: str) -> None: """Deletes a permission from a file. :param str file_id: a spreadsheet ID (aka file ID.) :param str permission_id: an ID for the permission. """ self.http_client.remove_permission(file_id, permission_id) ================================================ FILE: gspread/exceptions.py ================================================ """ gspread.exceptions ~~~~~~~~~~~~~~~~~~ Exceptions used in gspread. """ from typing import Any, Mapping from requests import Response class UnSupportedExportFormat(Exception): """Raised when export format is not supported.""" class GSpreadException(Exception): """A base class for gspread's exceptions.""" class WorksheetNotFound(GSpreadException): """Trying to open non-existent or inaccessible worksheet.""" class NoValidUrlKeyFound(GSpreadException): """No valid key found in URL.""" class IncorrectCellLabel(GSpreadException): """The cell label is incorrect.""" class InvalidInputValue(GSpreadException): """The provided values is incorrect.""" class APIError(GSpreadException): """Errors coming from the API itself, such as when we attempt to retrieve things that don't exist.""" def __init__(self, response: Response): try: error = response.json()["error"] except Exception as e: # in case we failed to parse the error from the API # build an empty error object to notify the caller # and keep the exception raise flow running error = { "code": -1, "message": response.text, "status": "invalid JSON: '{}'".format(e), } super().__init__(error) self.response: Response = response self.error: Mapping[str, Any] = error self.code: int = self.error["code"] def __str__(self) -> str: return "{}: [{}]: {}".format( self.__class__.__name__, self.code, self.error["message"] ) def __repr__(self) -> str: return self.__str__() def __reduce__(self) -> tuple: return self.__class__, (self.response,) class SpreadsheetNotFound(GSpreadException): """Trying to open non-existent or inaccessible spreadsheet.""" ================================================ FILE: gspread/http_client.py ================================================ """ gspread.http_client ~~~~~~~~~~~~~~ This module contains HTTPClient class responsible for communicating with Google API. """ import time from http import HTTPStatus from typing import ( IO, Any, Dict, List, Mapping, MutableMapping, Optional, Tuple, Type, Union, ) from google.auth.credentials import Credentials from google.auth.exceptions import RefreshError from google.auth.transport.requests import AuthorizedSession from requests import Response, Session from .exceptions import APIError, UnSupportedExportFormat from .urls import ( DRIVE_FILES_API_V3_URL, DRIVE_FILES_UPLOAD_API_V2_URL, SPREADSHEET_BATCH_UPDATE_URL, SPREADSHEET_SHEETS_COPY_TO_URL, SPREADSHEET_URL, SPREADSHEET_VALUES_APPEND_URL, SPREADSHEET_VALUES_BATCH_CLEAR_URL, SPREADSHEET_VALUES_BATCH_UPDATE_URL, SPREADSHEET_VALUES_BATCH_URL, SPREADSHEET_VALUES_CLEAR_URL, SPREADSHEET_VALUES_URL, ) from .utils import ExportFormat, convert_credentials, quote ParamsType = MutableMapping[str, Optional[Union[str, int, bool, float, List[str]]]] FileType = Optional[ Union[ MutableMapping[str, IO[Any]], MutableMapping[str, Tuple[str, IO[Any]]], MutableMapping[str, Tuple[str, IO[Any], str]], MutableMapping[str, Tuple[str, IO[Any], str, MutableMapping[str, str]]], ] ] class HTTPClient: """An instance of this class communicates with Google API. :param Credentials auth: An instance of google.auth.Credentials used to authenticate requests created by either: * gspread.auth.oauth() * gspread.auth.oauth_from_dict() * gspread.auth.service_account() * gspread.auth.service_account_from_dict() :param Session session: (Optional) An OAuth2 credential object. Credential objects created by `google-auth `_. You can pass you own Session object, simply pass ``auth=None`` and ``session=my_custom_session``. This class is not intended to be created manually. It will be created by the gspread.Client class. """ def __init__(self, auth: Credentials, session: Optional[Session] = None) -> None: if session is not None: self.session = session else: self.auth: Credentials = convert_credentials(auth) self.session = AuthorizedSession(self.auth) self.timeout: Optional[Union[float, Tuple[float, float]]] = None def login(self) -> None: from google.auth.transport.requests import Request self.auth.refresh(Request(self.session)) self.session.headers.update({"Authorization": "Bearer %s" % self.auth.token}) def set_timeout(self, timeout: Optional[Union[float, Tuple[float, float]]]) -> None: """How long to wait for the server to send data before giving up, as a float, or a ``(connect timeout, read timeout)`` tuple. Use value ``None`` to restore default timeout Value for ``timeout`` is in seconds (s). """ self.timeout = timeout def request( self, method: str, endpoint: str, params: Optional[ParamsType] = None, data: Optional[bytes] = None, json: Optional[Mapping[str, Any]] = None, files: FileType = None, headers: Optional[MutableMapping[str, str]] = None, ) -> Response: response = self.session.request( method=method, url=endpoint, json=json, params=params, data=data, files=files, headers=headers, timeout=self.timeout, ) if response.ok: return response else: raise APIError(response) def batch_update(self, id: str, body: Optional[Mapping[str, Any]]) -> Any: """Lower-level method that directly calls `spreadsheets/:batchUpdate `_. :param dict body: `Batch Update Request body `_. :returns: `Batch Update Response body `_. :rtype: dict .. versionadded:: 3.0 """ r = self.request("post", SPREADSHEET_BATCH_UPDATE_URL % id, json=body) return r.json() def values_update( self, id: str, range: str, params: Optional[ParamsType] = None, body: Optional[Mapping[str, Any]] = None, ) -> Any: """Lower-level method that directly calls `PUT spreadsheets//values/ `_. :param str range: The `A1 notation `_ of the values to update. :param dict params: (optional) `Values Update Query parameters `_. :param dict body: (optional) `Values Update Request body `_. :returns: `Values Update Response body `_. :rtype: dict Example:: sh.values_update( 'Sheet1!A2', params={ 'valueInputOption': 'USER_ENTERED' }, body={ 'values': [[1, 2, 3]] } ) .. versionadded:: 3.0 """ url = SPREADSHEET_VALUES_URL % (id, quote(range)) r = self.request("put", url, params=params, json=body) return r.json() def values_append( self, id: str, range: str, params: ParamsType, body: Optional[Mapping[str, Any]] ) -> Any: """Lower-level method that directly calls `spreadsheets//values:append `_. :param str range: The `A1 notation `_ of a range to search for a logical table of data. Values will be appended after the last row of the table. :param dict params: `Values Append Query parameters `_. :param dict body: `Values Append Request body `_. :returns: `Values Append Response body `_. :rtype: dict .. versionadded:: 3.0 """ url = SPREADSHEET_VALUES_APPEND_URL % (id, quote(range)) r = self.request("post", url, params=params, json=body) return r.json() def values_clear(self, id: str, range: str) -> Any: """Lower-level method that directly calls `spreadsheets//values:clear `_. :param str range: The `A1 notation `_ of the values to clear. :returns: `Values Clear Response body `_. :rtype: dict .. versionadded:: 3.0 """ url = SPREADSHEET_VALUES_CLEAR_URL % (id, quote(range)) r = self.request("post", url) return r.json() def values_batch_clear( self, id: str, params: Optional[ParamsType] = None, body: Optional[Mapping[str, Any]] = None, ) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchClear` :param dict params: (optional) `Values Batch Clear Query parameters `_. :param dict body: (optional) `Values Batch Clear request body `_. :rtype: dict """ url = SPREADSHEET_VALUES_BATCH_CLEAR_URL % id r = self.request("post", url, params=params, json=body) return r.json() def values_get( self, id: str, range: str, params: Optional[ParamsType] = None ) -> Any: """Lower-level method that directly calls `GET spreadsheets//values/ `_. :param str range: The `A1 notation `_ of the values to retrieve. :param dict params: (optional) `Values Get Query parameters `_. :returns: `Values Get Response body `_. :rtype: dict .. versionadded:: 3.0 """ url = SPREADSHEET_VALUES_URL % (id, quote(range)) r = self.request("get", url, params=params) return r.json() def values_batch_get( self, id: str, ranges: List[str], params: Optional[ParamsType] = None ) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchGet `_. :param list ranges: List of ranges in the `A1 notation `_ of the values to retrieve. :param dict params: (optional) `Values Batch Get Query parameters `_. :returns: `Values Batch Get Response body `_. :rtype: dict """ if params is None: params = {} params["ranges"] = ranges url = SPREADSHEET_VALUES_BATCH_URL % id r = self.request("get", url, params=params) return r.json() def values_batch_update( self, id: str, body: Optional[Mapping[str, Any]] = None ) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchUpdate `_. :param dict body: (optional) `Values Batch Update Request body `_. :returns: `Values Batch Update Response body `_. :rtype: dict """ url = SPREADSHEET_VALUES_BATCH_UPDATE_URL % id r = self.request("post", url, json=body) return r.json() def spreadsheets_get(self, id: str, params: Optional[ParamsType] = None) -> Any: """A method stub that directly calls `spreadsheets.get `_.""" url = SPREADSHEET_URL % id r = self.request("get", url, params=params) return r.json() def spreadsheets_sheets_copy_to( self, id: str, sheet_id: int, destination_spreadsheet_id: str ) -> Any: """Lower-level method that directly calls `spreadsheets.sheets.copyTo `_.""" url = SPREADSHEET_SHEETS_COPY_TO_URL % (id, sheet_id) body = {"destinationSpreadsheetId": destination_spreadsheet_id} r = self.request("post", url, json=body) return r.json() def fetch_sheet_metadata( self, id: str, params: Optional[ParamsType] = None ) -> Mapping[str, Any]: """Similar to :method spreadsheets_get:`gspread.http_client.spreadsheets_get`, get the spreadsheet from the API but by default **does not get the cells data**. It only retrieves the metadata from the spreadsheet. :param str id: the spreadsheet ID key :param dict params: (optional) the HTTP params for the GET request. By default sets the parameter ``includeGridData`` to ``false``. :returns: The raw spreadsheet :rtype: dict """ if params is None: params = {"includeGridData": "false"} url = SPREADSHEET_URL % id r = self.request("get", url, params=params) return r.json() def get_file_drive_metadata(self, id: str) -> Any: """Get the metadata from the Drive API for a specific file This method is mainly here to retrieve the create/update time of a file (these metadata are only accessible from the Drive API). """ url = DRIVE_FILES_API_V3_URL + "/{}".format(id) params: ParamsType = { "supportsAllDrives": True, "includeItemsFromAllDrives": True, "fields": "id,name,createdTime,modifiedTime", } res = self.request("get", url, params=params) return res.json() def export(self, file_id: str, format: str = ExportFormat.PDF) -> bytes: """Export the spreadsheet in the given format. :param str file_id: The key of the spreadsheet to export :param str format: The format of the resulting file. Possible values are: * ``ExportFormat.PDF`` * ``ExportFormat.EXCEL`` * ``ExportFormat.CSV`` * ``ExportFormat.OPEN_OFFICE_SHEET`` * ``ExportFormat.TSV`` * ``ExportFormat.ZIPPED_HTML`` See `ExportFormat`_ in the Drive API. :type format: :class:`~gspread.utils.ExportFormat` :returns bytes: The content of the exported file. .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats """ if format not in ExportFormat: raise UnSupportedExportFormat url = "{}/{}/export".format(DRIVE_FILES_API_V3_URL, file_id) params: ParamsType = {"mimeType": format} r = self.request("get", url, params=params) return r.content def insert_permission( self, file_id: str, email_address: Optional[str], perm_type: Optional[str], role: Optional[str], notify: bool = True, email_message: Optional[str] = None, with_link: bool = False, ) -> Response: """Creates a new permission for a file. :param str file_id: a spreadsheet ID (aka file ID). :param email_address: user or group e-mail address, domain name or None for 'anyone' type. :type email_address: str, None :param str perm_type: (optional) The account type. Allowed values are: ``user``, ``group``, ``domain``, ``anyone`` :param str role: (optional) The primary role for this user. Allowed values are: ``owner``, ``writer``, ``reader`` :param bool notify: Whether to send an email to the target user/domain. Default ``True``. :param str email_message: (optional) An email message to be sent if ``notify=True``. :param bool with_link: Whether the link is required for this permission to be active. Default ``False``. :returns dict: the newly created permission Examples:: # Give write permissions to otto@example.com gc.insert_permission( '0BmgG6nO_6dprnRRUWl1UFE', 'otto@example.org', perm_type='user', role='writer' ) # Make the spreadsheet publicly readable gc.insert_permission( '0BmgG6nO_6dprnRRUWl1UFE', None, perm_type='anyone', role='reader' ) """ url = "{}/{}/permissions".format(DRIVE_FILES_API_V3_URL, file_id) payload = { "type": perm_type, "role": role, "withLink": with_link, } params: ParamsType = { "supportsAllDrives": "true", } if perm_type == "domain": payload["domain"] = email_address elif perm_type in {"user", "group"}: payload["emailAddress"] = email_address params["sendNotificationEmail"] = notify params["emailMessage"] = email_message elif perm_type == "anyone": pass else: raise ValueError("Invalid permission type: {}".format(perm_type)) return self.request("post", url, json=payload, params=params) def list_permissions(self, file_id: str) -> List[Dict[str, Union[str, bool]]]: """Retrieve a list of permissions for a file. :param str file_id: a spreadsheet ID (aka file ID). """ url = "{}/{}/permissions".format(DRIVE_FILES_API_V3_URL, file_id) params: ParamsType = { "supportsAllDrives": True, "fields": "nextPageToken,permissions", } token = "" permissions = [] while token is not None: if token: params["pageToken"] = token r = self.request("get", url, params=params).json() permissions.extend(r["permissions"]) token = r.get("nextPageToken", None) return permissions def remove_permission(self, file_id: str, permission_id: str) -> None: """Deletes a permission from a file. :param str file_id: a spreadsheet ID (aka file ID.) :param str permission_id: an ID for the permission. """ url = "{}/{}/permissions/{}".format( DRIVE_FILES_API_V3_URL, file_id, permission_id ) params: ParamsType = {"supportsAllDrives": True} self.request("delete", url, params=params) def import_csv(self, file_id: str, data: Union[str, bytes]) -> Any: """Imports data into the first page of the spreadsheet. :param str data: A CSV string of data. Example: .. code:: # Read CSV file contents content = open('file_to_import.csv', 'r').read() gc.import_csv(spreadsheet.id, content) .. note:: This method removes all other worksheets and then entirely replaces the contents of the first worksheet. """ # Make sure we send utf-8 if isinstance(data, str): data = data.encode("utf-8") headers = {"Content-Type": "text/csv"} url = "{}/{}".format(DRIVE_FILES_UPLOAD_API_V2_URL, file_id) res = self.request( "put", url, data=data, params={ "uploadType": "media", "convert": True, "supportsAllDrives": True, }, headers=headers, ) return res.json() class BackOffHTTPClient(HTTPClient): """BackOffHTTPClient is a http client with exponential backoff retries. In case a request fails due to some API rate limits, it will wait for some time, then retry the request. This can help by trying the request after some time and prevent the application from failing (by raising an APIError exception). .. Warning:: This HTTPClient is not production ready yet. Use it at your own risk ! .. note:: To use with the `auth` module, make sure to pass this backoff http client using the ``http_client`` parameter of the method used. .. note:: Currently known issues are: * will retry exponentially even when the error should raise instantly. Due to the Drive API that raises 403 (Forbidden) errors for forbidden access and for api rate limit exceeded.""" _HTTP_ERROR_CODES: List[HTTPStatus] = [ HTTPStatus.REQUEST_TIMEOUT, # in case of a timeout HTTPStatus.TOO_MANY_REQUESTS, # sheet API usage rate limit exceeded ] _NR_BACKOFF: int = 0 _MAX_BACKOFF: int = 128 # arbitrary maximum backoff def request(self, *args: Any, **kwargs: Any) -> Response: # Check if we should retry the request def _should_retry( code: int, error: Mapping[str, Any], wait: int, ) -> bool: # Drive API return a dict object 'errors', the sheet API does not if "errors" in error: # Drive API returns a code 403 when reaching quotas/usage limits if ( code == HTTPStatus.FORBIDDEN and error["errors"][0]["domain"] == "usageLimits" ): return True # We retry if: # - the return code is one of: # - 429: too many requests # - 408: request timeout # - >= 500: some server error # - AND we did not reach the max retry limit return ( code in self._HTTP_ERROR_CODES or code >= HTTPStatus.INTERNAL_SERVER_ERROR ) and wait <= self._MAX_BACKOFF try: return super().request(*args, **kwargs) except APIError as err: code = err.code error = err.error self._NR_BACKOFF += 1 wait = min(2**self._NR_BACKOFF, self._MAX_BACKOFF) # check if error should retry if _should_retry(code, error, wait) is True: time.sleep(wait) # make the request again response = self.request(*args, **kwargs) # reset counters for next time self._NR_BACKOFF = 0 return response # failed too many times, raise APIEerror raise err except RefreshError as err: self._NR_BACKOFF += 1 wait = min(2**self._NR_BACKOFF, self._MAX_BACKOFF) if wait <= self._MAX_BACKOFF: time.sleep(wait) # make the request again response = self.request(*args, **kwargs) # reset counters for next time self._NR_BACKOFF = 0 return response # failed too many times, raise APIEerror raise err HTTPClientType = Type[HTTPClient] ================================================ FILE: gspread/py.typed ================================================ ================================================ FILE: gspread/spreadsheet.py ================================================ """ gspread.spreadsheet ~~~~~~~~~~~~~~ This module contains common spreadsheets' models. """ import warnings from typing import Any, Dict, Generator, Iterable, List, Mapping, Optional, Union from requests import Response from .cell import Cell from .exceptions import WorksheetNotFound from .http_client import HTTPClient, ParamsType from .urls import DRIVE_FILES_API_V3_URL, SPREADSHEET_DRIVE_URL from .utils import ExportFormat, finditem from .worksheet import Worksheet class Spreadsheet: """The class that represents a spreadsheet.""" def __init__(self, http_client: HTTPClient, properties: Dict[str, Union[str, Any]]): self.client = http_client self._properties = properties metadata = self.fetch_sheet_metadata() self._properties.update(metadata["properties"]) @property def id(self) -> str: """Spreadsheet ID.""" return self._properties["id"] @property def title(self) -> str: """Spreadsheet title.""" return self._properties["title"] @property def url(self) -> str: """Spreadsheet URL.""" return SPREADSHEET_DRIVE_URL % self.id @property def creationTime(self) -> str: """Spreadsheet Creation time.""" if "createdTime" not in self._properties: self.update_drive_metadata() return self._properties["createdTime"] @property def lastUpdateTime(self) -> str: """Spreadsheet last updated time. Only updated on initialisation. For actual last updated time, use get_lastUpdateTime().""" warnings.warn( "worksheet.lastUpdateTime is deprecated, please use worksheet.get_lastUpdateTime()", category=DeprecationWarning, ) if "modifiedTime" not in self._properties: self.update_drive_metadata() return self._properties["modifiedTime"] @property def timezone(self) -> str: """Spreadsheet timeZone""" return self._properties["timeZone"] @property def locale(self) -> str: """Spreadsheet locale""" return self._properties["locale"] @property def sheet1(self) -> Worksheet: """Shortcut property for getting the first worksheet.""" return self.get_worksheet(0) def __iter__(self) -> Generator[Worksheet, None, None]: yield from self.worksheets() def __repr__(self) -> str: return "<{} {} id:{}>".format( self.__class__.__name__, repr(self.title), self.id, ) def batch_update(self, body: Mapping[str, Any]) -> Any: """Lower-level method that directly calls `spreadsheets/:batchUpdate `_. :param dict body: `Batch Update Request body `_. :returns: `Batch Update Response body `_. :rtype: dict .. versionadded:: 3.0 """ return self.client.batch_update(self.id, body) def values_append( self, range: str, params: ParamsType, body: Mapping[str, Any] ) -> Any: """Lower-level method that directly calls `spreadsheets//values:append `_. :param str range: The `A1 notation `_ of a range to search for a logical table of data. Values will be appended after the last row of the table. :param dict params: `Values Append Query parameters `_. :param dict body: `Values Append Request body `_. :returns: `Values Append Response body `_. :rtype: dict .. versionadded:: 3.0 """ return self.client.values_append(self.id, range, params, body) def values_clear(self, range: str) -> Any: """Lower-level method that directly calls `spreadsheets//values:clear `_. :param str range: The `A1 notation `_ of the values to clear. :returns: `Values Clear Response body `_. :rtype: dict .. versionadded:: 3.0 """ return self.client.values_clear(self.id, range) def values_batch_clear( self, params: Optional[ParamsType] = None, body: Optional[Mapping[str, Any]] = None, ) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchClear` :param dict params: (optional) `Values Batch Clear Query parameters `_. :param dict body: (optional) `Values Batch Clear request body `_. :rtype: dict """ return self.client.values_batch_clear(self.id, params, body) def values_get(self, range: str, params: Optional[ParamsType] = None) -> Any: """Lower-level method that directly calls `GET spreadsheets//values/ `_. :param str range: The `A1 notation `_ of the values to retrieve. :param dict params: (optional) `Values Get Query parameters `_. :returns: `Values Get Response body `_. :rtype: dict .. versionadded:: 3.0 """ return self.client.values_get(self.id, range, params=params) def values_batch_get( self, ranges: List[str], params: Optional[ParamsType] = None ) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchGet `_. :param list ranges: List of ranges in the `A1 notation `_ of the values to retrieve. :param dict params: (optional) `Values Batch Get Query parameters `_. :returns: `Values Batch Get Response body `_. :rtype: dict """ return self.client.values_batch_get(self.id, ranges, params=params) def values_update( self, range: str, params: Optional[ParamsType] = None, body: Optional[Mapping[str, Any]] = None, ) -> Any: """Lower-level method that directly calls `PUT spreadsheets//values/ `_. :param str range: The `A1 notation `_ of the values to update. :param dict params: (optional) `Values Update Query parameters `_. :param dict body: (optional) `Values Update Request body `_. :returns: `Values Update Response body `_. :rtype: dict Example:: sh.values_update( 'Sheet1!A2', params={ 'valueInputOption': 'USER_ENTERED' }, body={ 'values': [[1, 2, 3]] } ) .. versionadded:: 3.0 """ return self.client.values_update(self.id, range, params=params, body=body) def values_batch_update(self, body: Optional[Mapping[str, Any]] = None) -> Any: """Lower-level method that directly calls `spreadsheets//values:batchUpdate `_. :param dict body: (optional) `Values Batch Update Request body `_. :returns: `Values Batch Update Response body `_. :rtype: dict """ return self.client.values_batch_update(self.id, body=body) def _spreadsheets_get(self, params: Optional[ParamsType] = None) -> Any: """A method stub that directly calls `spreadsheets.get `_.""" return self.client.spreadsheets_get(self.id, params=params) def _spreadsheets_sheets_copy_to( self, sheet_id: int, destination_spreadsheet_id: str ) -> Any: """Lower-level method that directly calls `spreadsheets.sheets.copyTo `_.""" return self.client.spreadsheets_sheets_copy_to( self.id, sheet_id, destination_spreadsheet_id ) def fetch_sheet_metadata( self, params: Optional[ParamsType] = None ) -> Mapping[str, Any]: """Similar to :method spreadsheets_get:`gspread.http_client.spreadsheets_get`, get the spreadsheet from the API but by default **does not get the cells data**. It only retrieves the metadata from the spreadsheet. :param dict params: (optional) the HTTP params for the GET request. By default sets the parameter ``includeGridData`` to ``false``. :returns: The raw spreadsheet :rtype: dict """ return self.client.fetch_sheet_metadata(self.id, params=params) def get_worksheet(self, index: int) -> Worksheet: """Returns a worksheet with specified `index`. :param index: An index of a worksheet. Indexes start from zero. :type index: int :returns: an instance of :class:`gspread.worksheet.Worksheet`. :raises: :class:`~gspread.exceptions.WorksheetNotFound`: if can't find the worksheet Example. To get third worksheet of a spreadsheet: >>> sht = client.open('My fancy spreadsheet') >>> worksheet = sht.get_worksheet(2) """ sheet_data = self.fetch_sheet_metadata() try: properties = sheet_data["sheets"][index]["properties"] return Worksheet(self, properties, self.id, self.client) except (KeyError, IndexError): raise WorksheetNotFound("index {} not found".format(index)) def get_worksheet_by_id(self, id: Union[str, int]) -> Worksheet: """Returns a worksheet with specified `worksheet id`. :param id: The id of a worksheet. it can be seen in the url as the value of the parameter 'gid'. :type id: str | int :returns: an instance of :class:`gspread.worksheet.Worksheet`. :raises: :class:`~gspread.exceptions.WorksheetNotFound`: if can't find the worksheet Example. To get the worksheet 123456 of a spreadsheet: >>> sht = client.open('My fancy spreadsheet') >>> worksheet = sht.get_worksheet_by_id(123456) """ sheet_data = self.fetch_sheet_metadata() try: worksheet_id_int = int(id) except ValueError as ex: raise ValueError("id should be int") from ex try: item = finditem( lambda x: x["properties"]["sheetId"] == worksheet_id_int, sheet_data["sheets"], ) return Worksheet(self, item["properties"], self.id, self.client) except (StopIteration, KeyError): raise WorksheetNotFound("id {} not found".format(worksheet_id_int)) def worksheets(self, exclude_hidden: bool = False) -> List[Worksheet]: """Returns a list of all :class:`worksheets ` in a spreadsheet. :param exclude_hidden: (optional) If set to ``True`` will only return visible worksheets. Default is ``False``. :type exclude_hidden: bool :returns: a list of :class:`worksheets `. :rtype: list """ sheet_data = self.fetch_sheet_metadata() worksheets = [ Worksheet(self, s["properties"], self.id, self.client) for s in sheet_data["sheets"] ] if exclude_hidden: worksheets = [w for w in worksheets if not w.isSheetHidden] return worksheets def worksheet(self, title: str) -> Worksheet: """Returns a worksheet with specified `title`. :param title: A title of a worksheet. If there're multiple worksheets with the same title, first one will be returned. :type title: str :returns: an instance of :class:`gspread.worksheet.Worksheet`. :raises: WorksheetNotFound: if can't find the worksheet Example. Getting worksheet named 'Annual bonuses' >>> sht = client.open('Sample one') >>> worksheet = sht.worksheet('Annual bonuses') """ sheet_data = self.fetch_sheet_metadata() try: item = finditem( lambda x: x["properties"]["title"] == title, sheet_data["sheets"], ) return Worksheet(self, item["properties"], self.id, self.client) except (StopIteration, KeyError): raise WorksheetNotFound(title) def add_worksheet( self, title: str, rows: int, cols: int, index: Optional[int] = None ) -> Worksheet: """Adds a new worksheet to a spreadsheet. :param title: A title of a new worksheet. :type title: str :param rows: Number of rows. :type rows: int :param cols: Number of columns. :type cols: int :param index: Position of the sheet. :type index: int :returns: a newly created :class:`worksheets `. """ body: Dict[ str, List[Dict[str, Dict[str, Dict[str, Union[str, int, Dict[str, int]]]]]] ] = { "requests": [ { "addSheet": { "properties": { "title": title, "sheetType": "GRID", "gridProperties": { "rowCount": rows, "columnCount": cols, }, } } } ] } if index is not None: body["requests"][0]["addSheet"]["properties"]["index"] = index data = self.client.batch_update(self.id, body) properties = data["replies"][0]["addSheet"]["properties"] return Worksheet(self, properties, self.id, self.client) def duplicate_sheet( self, source_sheet_id: int, insert_sheet_index: Optional[int] = None, new_sheet_id: Optional[int] = None, new_sheet_name: Optional[str] = None, ) -> Worksheet: """Duplicates the contents of a sheet. :param int source_sheet_id: The sheet ID to duplicate. :param int insert_sheet_index: (optional) The zero-based index where the new sheet should be inserted. The index of all sheets after this are incremented. :param int new_sheet_id: (optional) The ID of the new sheet. If not set, an ID is chosen. If set, the ID must not conflict with any existing sheet ID. If set, it must be non-negative. :param str new_sheet_name: (optional) The name of the new sheet. If empty, a new name is chosen for you. :returns: a newly created :class:`gspread.worksheet.Worksheet` .. versionadded:: 3.1 """ return Worksheet._duplicate( self.client, self.id, source_sheet_id, self, insert_sheet_index=insert_sheet_index, new_sheet_id=new_sheet_id, new_sheet_name=new_sheet_name, ) def del_worksheet(self, worksheet: Worksheet) -> Any: """Deletes a worksheet from a spreadsheet. :param worksheet: The worksheet to be deleted. :type worksheet: :class:`~gspread.worksheet.Worksheet` """ body = {"requests": [{"deleteSheet": {"sheetId": worksheet.id}}]} return self.client.batch_update(self.id, body) def del_worksheet_by_id(self, worksheet_id: Union[str, int]) -> Any: """ Deletes a Worksheet by id """ try: worksheet_id_int = int(worksheet_id) except ValueError as ex: raise ValueError("id should be int") from ex body = {"requests": [{"deleteSheet": {"sheetId": worksheet_id_int}}]} return self.client.batch_update(self.id, body) def reorder_worksheets( self, worksheets_in_desired_order: Iterable[Worksheet] ) -> Any: """Updates the ``index`` property of each Worksheet to reflect its index in the provided sequence of Worksheets. :param worksheets_in_desired_order: Iterable of Worksheet objects in desired order. Note: If you omit some of the Spreadsheet's existing Worksheet objects from the provided sequence, those Worksheets will be appended to the end of the sequence in the order that they appear in the list returned by :meth:`gspread.spreadsheet.Spreadsheet.worksheets`. .. versionadded:: 3.4 """ idx_map = {} for idx, w in enumerate(worksheets_in_desired_order): idx_map[w.id] = idx for w in self.worksheets(): if w.id in idx_map: continue idx += 1 idx_map[w.id] = idx body = { "requests": [ { "updateSheetProperties": { "properties": {"sheetId": key, "index": val}, "fields": "index", } } for key, val in idx_map.items() ] } return self.client.batch_update(self.id, body) def share( self, email_address: str, perm_type: str, role: str, notify: bool = True, email_message: Optional[str] = None, with_link: bool = False, ) -> Response: """Share the spreadsheet with other accounts. :param email_address: user or group e-mail address, domain name or None for 'anyone' type. :type email_address: str, None :param perm_type: The account type. Allowed values are: ``user``, ``group``, ``domain``, ``anyone``. :type perm_type: str :param role: The primary role for this user. Allowed values are: ``owner``, ``writer``, ``reader``. :type role: str :param notify: (optional) Whether to send an email to the target user/domain. :type notify: bool :param email_message: (optional) The email to be sent if notify=True :type email_message: str :param with_link: (optional) Whether the link is required for this permission :type with_link: bool Example:: # Give Otto a write permission on this spreadsheet sh.share('otto@example.com', perm_type='user', role='writer') # Give Otto's family a read permission on this spreadsheet sh.share('otto-familly@example.com', perm_type='group', role='reader') """ return self.client.insert_permission( self.id, email_address=email_address, perm_type=perm_type, role=role, notify=notify, email_message=email_message, with_link=with_link, ) def export(self, format: ExportFormat = ExportFormat.PDF) -> bytes: """Export the spreadsheet in the given format. :param str file_id: A key of a spreadsheet to export :param format: The format of the resulting file. Possible values are: ``ExportFormat.PDF``, ``ExportFormat.EXCEL``, ``ExportFormat.CSV``, ``ExportFormat.OPEN_OFFICE_SHEET``, ``ExportFormat.TSV``, and ``ExportFormat.ZIPPED_HTML``. See `ExportFormat`_ in the Drive API. Default value is ``ExportFormat.PDF``. :type format: :class:`~gspread.utils.ExportFormat` :returns bytes: The content of the exported file. .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats """ return self.client.export(self.id, format) def list_permissions(self) -> List[Dict[str, Union[str, bool]]]: """Lists the spreadsheet's permissions.""" return self.client.list_permissions(self.id) def remove_permissions(self, value: str, role: str = "any") -> List[str]: """Remove permissions from a user or domain. :param value: User or domain to remove permissions from :type value: str :param role: (optional) Permission to remove. Defaults to all permissions. :type role: str Example:: # Remove Otto's write permission for this spreadsheet sh.remove_permissions('otto@example.com', role='writer') # Remove all Otto's permissions for this spreadsheet sh.remove_permissions('otto@example.com') """ permission_list = self.client.list_permissions(self.id) key = "emailAddress" if "@" in value else "domain" filtered_id_list: List[str] = [ str(p["id"]) for p in permission_list if p.get(key) == value and (p["role"] == role or role == "any") ] for permission_id in filtered_id_list: self.client.remove_permission(self.id, permission_id) return filtered_id_list def transfer_ownership(self, permission_id: str) -> Response: """Transfer the ownership of this file to a new user. It is necessary to first create the permission with the new owner's email address, get the permission ID then use this method to transfer the ownership. .. note:: You can list all permissions using :meth:`gspread.spreadsheet.Spreadsheet.list_permissions`. .. warning:: You can only transfer ownership to a new user, you cannot transfer ownership to a group or a domain email address. """ url = "{}/{}/permissions/{}".format( DRIVE_FILES_API_V3_URL, self.id, permission_id ) payload = { # new owner must be writer in order to accept ownership by editing permissions "role": "writer", "pendingOwner": True, } return self.client.request("patch", url, json=payload) def accept_ownership(self, permission_id: str) -> Response: """Accept the pending ownership request on that file. It is necessary to edit the permission with the pending ownership. .. note:: You can only accept ownership transfer for the user currently being used. """ url = "{}/{}/permissions/{}".format( DRIVE_FILES_API_V3_URL, self.id, permission_id, ) payload = { "role": "owner", } params: ParamsType = { "transferOwnership": True, } return self.client.request("patch", url, json=payload, params=params) def named_range(self, named_range: str) -> List[Cell]: """return a list of :class:`gspread.cell.Cell` objects from the specified named range. :param named_range: A string with a named range value to fetch. :type named_range: str """ # the function `range` does all necessary actions to get a named range. # This is only here to provide better user experience. return self.sheet1.range(named_range) def list_named_ranges(self) -> List[Any]: """Lists the spreadsheet's named ranges.""" return self.fetch_sheet_metadata(params={"fields": "namedRanges"}).get( "namedRanges", [] ) def update_title(self, title: str) -> Any: """Renames the spreadsheet. :param str title: A new title. """ body = { "requests": [ { "updateSpreadsheetProperties": { "properties": {"title": title}, "fields": "title", } } ] } res = self.batch_update(body) self._properties["title"] = title return res def update_timezone(self, timezone: str) -> Any: """Updates the current spreadsheet timezone. Can be any timezone in CLDR format such as "America/New_York" or a custom time zone such as GMT-07:00. """ body = { "requests": [ { "updateSpreadsheetProperties": { "properties": {"timeZone": timezone}, "fields": "timeZone", }, }, ] } res = self.batch_update(body) self._properties["timeZone"] = timezone return res def update_locale(self, locale: str) -> Any: """Update the locale of the spreadsheet. Can be any of the ISO 639-1 language codes, such as: de, fr, en, ... Or an ISO 639-2 if no ISO 639-1 exists. Or a combination of the ISO language code and country code, such as en_US, de_CH, fr_FR, ... .. note:: Note: when updating this field, not all locales/languages are supported. """ body = { "requests": [ { "updateSpreadsheetProperties": { "properties": {"locale": locale}, "fields": "locale", }, }, ] } res = self.batch_update(body) self._properties["locale"] = locale return res def list_protected_ranges(self, sheetid: int) -> List[Any]: """Lists the spreadsheet's protected named ranges""" sheets: List[Mapping[str, Any]] = self.fetch_sheet_metadata( params={"fields": "sheets.properties,sheets.protectedRanges"} )["sheets"] try: sheet = finditem( lambda sheet: sheet["properties"]["sheetId"] == sheetid, sheets ) except StopIteration: raise WorksheetNotFound("worksheet id {} not found".format(sheetid)) return sheet.get("protectedRanges", []) def get_lastUpdateTime(self) -> str: """Get the lastUpdateTime metadata from the Drive API.""" metadata = self.client.get_file_drive_metadata(self.id) return metadata["modifiedTime"] def update_drive_metadata(self) -> None: """Fetches the drive metadata from the Drive API and updates the cached values in _properties dict.""" drive_metadata = self.client.get_file_drive_metadata(self._properties["id"]) self._properties.update(drive_metadata) ================================================ FILE: gspread/urls.py ================================================ """ gspread.urls ~~~~~~~~~~~~ Google API urls. """ SPREADSHEETS_API_V4_BASE_URL: str = "https://sheets.googleapis.com/v4/spreadsheets" SPREADSHEET_URL: str = SPREADSHEETS_API_V4_BASE_URL + "/%s" SPREADSHEET_BATCH_UPDATE_URL: str = SPREADSHEETS_API_V4_BASE_URL + "/%s:batchUpdate" SPREADSHEET_VALUES_URL: str = SPREADSHEETS_API_V4_BASE_URL + "/%s/values/%s" SPREADSHEET_VALUES_BATCH_URL: str = SPREADSHEETS_API_V4_BASE_URL + "/%s/values:batchGet" SPREADSHEET_VALUES_BATCH_UPDATE_URL: str = ( SPREADSHEETS_API_V4_BASE_URL + "/%s/values:batchUpdate" ) SPREADSHEET_VALUES_BATCH_CLEAR_URL: str = ( SPREADSHEETS_API_V4_BASE_URL + "/%s/values:batchClear" ) SPREADSHEET_VALUES_APPEND_URL: str = SPREADSHEET_VALUES_URL + ":append" SPREADSHEET_VALUES_CLEAR_URL: str = SPREADSHEET_VALUES_URL + ":clear" SPREADSHEET_SHEETS_COPY_TO_URL: str = SPREADSHEET_URL + "/sheets/%s:copyTo" DRIVE_FILES_API_V3_URL: str = "https://www.googleapis.com/drive/v3/files" DRIVE_FILES_UPLOAD_API_V2_URL: str = ( "https://www.googleapis.com" "/upload/drive/v2/files" ) DRIVE_FILES_API_V3_COMMENTS_URL: str = ( "https://www.googleapis.com/drive/v3/files/%s/comments" ) SPREADSHEET_DRIVE_URL: str = "https://docs.google.com/spreadsheets/d/%s" WORKSHEET_DRIVE_URL = SPREADSHEET_DRIVE_URL + "#gid=%s" ================================================ FILE: gspread/utils.py ================================================ """ gspread.utils ~~~~~~~~~~~~~ This module contains utility functions. """ import enum import re from collections import defaultdict from collections.abc import Sequence from functools import wraps from itertools import chain from typing import ( TYPE_CHECKING, Any, AnyStr, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, TypeVar, Union, ) from urllib.parse import quote as uquote from google.auth.credentials import Credentials as Credentials from google.oauth2.credentials import Credentials as UserCredentials from google.oauth2.service_account import Credentials as ServiceAccountCredentials from .exceptions import IncorrectCellLabel, InvalidInputValue, NoValidUrlKeyFound if TYPE_CHECKING: from .cell import Cell MAGIC_NUMBER = 64 CELL_ADDR_RE = re.compile(r"([A-Za-z]+)([1-9]\d*)") A1_ADDR_ROW_COL_RE = re.compile(r"([A-Za-z]+)?([1-9]\d*)?$") A1_ADDR_FULL_RE = re.compile(r"[A-Za-z]+\d+:[A-Za-z]+\d+") # e.g. A1:B2 not A1:B URL_KEY_V1_RE = re.compile(r"key=([^&#]+)") URL_KEY_V2_RE = re.compile(r"/spreadsheets/d/([a-zA-Z0-9-_]+)") class StrEnum(str, enum.Enum): def __new__(cls, value, *args, **kwargs): if not isinstance(value, (str, enum.auto)): raise TypeError( f"Values of StrEnums must be strings: {value!r} is a {type(value)}" ) return super().__new__(cls, value, *args, **kwargs) def __str__(self): return str(self.value) def _generate_next_value_(name, *_): return name class Dimension(StrEnum): rows = "ROWS" cols = "COLUMNS" class MergeType(StrEnum): merge_all = "MERGE_ALL" merge_columns = "MERGE_COLUMNS" merge_rows = "MERGE_ROWS" class ValueRenderOption(StrEnum): formatted = "FORMATTED_VALUE" unformatted = "UNFORMATTED_VALUE" formula = "FORMULA" class ValueInputOption(StrEnum): raw = "RAW" user_entered = "USER_ENTERED" class InsertDataOption(StrEnum): overwrite = "OVERWRITE" insert_rows = "INSERT_ROWS" class DateTimeOption(StrEnum): serial_number = "SERIAL_NUMBER" formatted_string = "FORMATTED_STRING" class MimeType(StrEnum): google_sheets = "application/vnd.google-apps.spreadsheet" pdf = "application/pdf" excel = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" csv = "text/csv" open_office_sheet = "application/vnd.oasis.opendocument.spreadsheet" tsv = "text/tab-separated-values" zip = "application/zip" class ExportFormat(StrEnum): PDF = MimeType.pdf EXCEL = MimeType.excel CSV = MimeType.csv OPEN_OFFICE_SHEET = MimeType.open_office_sheet TSV = MimeType.tsv ZIPPED_HTML = MimeType.zip class PasteType(StrEnum): normal = "PASTE_NORMAL" values = "PASTE_VALUES" format = "PASTE_FORMAT" # type: ignore no_borders = "PASTE_NO_BORDERS" formula = "PASTE_NO_BORDERS" data_validation = "PASTE_DATA_VALIDATION" conditional_formating = "PASTE_CONDITIONAL_FORMATTING" class PasteOrientation(StrEnum): normal = "NORMAL" transpose = "TRANSPOSE" class GridRangeType(StrEnum): ValueRange = "ValueRange" ListOfLists = "ListOfLists" class ValidationConditionType(StrEnum): number_greater = "NUMBER_GREATER" number_greater_than_eq = "NUMBER_GREATER_THAN_EQ" number_less = "NUMBER_LESS" number_less_than_eq = "NUMBER_LESS_THAN_EQ" number_eq = "NUMBER_EQ" number_not_eq = "NUMBER_NOT_EQ" number_between = "NUMBER_BETWEEN" number_not_between = "NUMBER_NOT_BETWEEN" text_contains = "TEXT_CONTAINS" text_not_contains = "TEXT_NOT_CONTAINS" text_starts_with = "TEXT_STARTS_WITH" text_ends_with = "TEXT_ENDS_WITH" text_eq = "TEXT_EQ" text_is_email = "TEXT_IS_EMAIL" text_is_url = "TEXT_IS_URL" date_eq = "DATE_EQ" date_before = "DATE_BEFORE" date_after = "DATE_AFTER" date_on_or_before = "DATE_ON_OR_BEFORE" date_on_or_after = "DATE_ON_OR_AFTER" date_between = "DATE_BETWEEN" date_not_between = "DATE_NOT_BETWEEN" date_is_valid = "DATE_IS_VALID" one_of_range = "ONE_OF_RANGE" one_of_list = "ONE_OF_LIST" blank = "BLANK" not_blank = "NOT_BLANK" custom_formula = "CUSTOM_FORMULA" boolean = "BOOLEAN" text_not_eq = "TEXT_NOT_EQ" date_not_eq = "DATE_NOT_EQ" filter_expression = "FILTER_EXPRESSION" class TableDirection(StrEnum): table = "TABLE" down = "DOWN" right = "RIGHT" def convert_credentials(credentials: Credentials) -> Credentials: module = credentials.__module__ cls = credentials.__class__.__name__ if "oauth2client" in module and cls == "ServiceAccountCredentials": return _convert_service_account(credentials) elif "oauth2client" in module and cls in ( "OAuth2Credentials", "AccessTokenCredentials", "GoogleCredentials", ): return _convert_oauth(credentials) elif isinstance(credentials, Credentials): return credentials raise TypeError( "Credentials need to be from either oauth2client or from google-auth." ) def _convert_oauth(credentials: Any) -> Credentials: return UserCredentials( credentials.access_token, credentials.refresh_token, credentials.id_token, credentials.token_uri, credentials.client_id, credentials.client_secret, credentials.scopes, ) def _convert_service_account(credentials: Any) -> Credentials: data = credentials.serialization_data data["token_uri"] = credentials.token_uri scopes = credentials._scopes.split() or [ "https://www.googleapis.com/auth/drive", "https://spreadsheets.google.com/feeds", ] return ServiceAccountCredentials.from_service_account_info(data, scopes=scopes) T = TypeVar("T") def finditem(func: Callable[[T], bool], seq: Iterable[T]) -> T: """Finds and returns first item in iterable for which func(item) is True.""" return next(item for item in seq if func(item)) def numericise( value: Optional[AnyStr], empty2zero: bool = False, default_blank: Any = "", allow_underscores_in_numeric_literals: bool = False, ) -> Optional[Union[int, float, AnyStr]]: """Returns a value that depends on the input: - Float if input is a string that can be converted to Float - Integer if input is a string that can be converted to integer - Zero if the input is a string that is empty and empty2zero flag is set - The unmodified input value, otherwise. Examples:: >>> numericise("faa") 'faa' >>> numericise("3") 3 >>> numericise("3_2", allow_underscores_in_numeric_literals=False) '3_2' >>> numericise("3_2", allow_underscores_in_numeric_literals=True) 32 >>> numericise("3.1") 3.1 >>> numericise("2,000.1") 2000.1 >>> numericise("", empty2zero=True) 0 >>> numericise("", empty2zero=False) '' >>> numericise("", default_blank=None) >>> >>> numericise("", default_blank="foo") 'foo' >>> numericise("") '' >>> numericise(None) >>> """ numericised: Optional[Union[int, float, AnyStr]] = value if isinstance(value, str): if "_" in value: if not allow_underscores_in_numeric_literals: return value value = value.replace("_", "") # replace comma separating thousands to match python format cleaned_value = value.replace(",", "") try: numericised = int(cleaned_value) except ValueError: try: numericised = float(cleaned_value) except ValueError: if value == "": if empty2zero: numericised = 0 else: numericised = default_blank return numericised def numericise_all( values: List[AnyStr], empty2zero: bool = False, default_blank: Any = "", allow_underscores_in_numeric_literals: bool = False, ignore: List[int] = [], ) -> List[Optional[Union[int, float, AnyStr]]]: """Returns a list of numericised values from strings except those from the row specified as ignore. :param list values: Input row :param bool empty2zero: (optional) Whether or not to return empty cells as 0 (zero). Defaults to ``False``. :param Any default_blank: Which value to use for blank cells, defaults to empty string. :param bool allow_underscores_in_numeric_literals: Whether or not to allow visual underscores in numeric literals :param list ignore: List of ints of indices of the row (index 1) to ignore numericising. """ # in case someone explicitly passes `None` as ignored list ignore = ignore or [] numericised_list = [ ( values[index] if index + 1 in ignore else numericise( values[index], empty2zero=empty2zero, default_blank=default_blank, allow_underscores_in_numeric_literals=allow_underscores_in_numeric_literals, ) ) for index in range(len(values)) ] return numericised_list def rowcol_to_a1(row: int, col: int) -> str: """Translates a row and column cell address to A1 notation. :param row: The row of the cell to be converted. Rows start at index 1. :type row: int, str :param col: The column of the cell to be converted. Columns start at index 1. :type row: int, str :returns: a string containing the cell's coordinates in A1 notation. Example: >>> rowcol_to_a1(1, 1) A1 """ if row < 1 or col < 1: raise IncorrectCellLabel("({}, {})".format(row, col)) div = col column_label = "" while div: (div, mod) = divmod(div, 26) if mod == 0: mod = 26 div -= 1 column_label = chr(mod + MAGIC_NUMBER) + column_label label = "{}{}".format(column_label, row) return label def a1_to_rowcol(label: str) -> Tuple[int, int]: """Translates a cell's address in A1 notation to a tuple of integers. :param str label: A cell label in A1 notation, e.g. 'B1'. Letter case is ignored. :returns: a tuple containing `row` and `column` numbers. Both indexed from 1 (one). :rtype: tuple Example: >>> a1_to_rowcol('A1') (1, 1) """ m = CELL_ADDR_RE.match(label) if m: column_label = m.group(1).upper() row = int(m.group(2)) col = 0 for i, c in enumerate(reversed(column_label)): col += (ord(c) - MAGIC_NUMBER) * (26**i) else: raise IncorrectCellLabel(label) return (row, col) IntOrInf = Union[int, float] def _a1_to_rowcol_unbounded(label: str) -> Tuple[IntOrInf, IntOrInf]: """Translates a cell's address in A1 notation to a tuple of integers. Same as `a1_to_rowcol()` but allows for missing row or column part (e.g. "A" for the first column) :returns: a tuple containing `row` and `column` numbers. Both indexed from 1 (one). :rtype: tuple Example: >>> _a1_to_rowcol_unbounded('A1') (1, 1) >>> _a1_to_rowcol_unbounded('A') (inf, 1) >>> _a1_to_rowcol_unbounded('1') (1, inf) >>> _a1_to_rowcol_unbounded('ABC123') (123, 731) >>> _a1_to_rowcol_unbounded('ABC') (inf, 731) >>> _a1_to_rowcol_unbounded('123') (123, inf) >>> _a1_to_rowcol_unbounded('1A') Traceback (most recent call last): ... gspread.exceptions.IncorrectCellLabel: 1A >>> _a1_to_rowcol_unbounded('') (inf, inf) """ m = A1_ADDR_ROW_COL_RE.match(label) if m: column_label, row = m.groups() col: IntOrInf if column_label: col = 0 for i, c in enumerate(reversed(column_label.upper())): col += (ord(c) - MAGIC_NUMBER) * (26**i) else: col = float("inf") if row: row = int(row) else: row = float("inf") else: raise IncorrectCellLabel(label) return (row, col) def a1_range_to_grid_range(name: str, sheet_id: Optional[int] = None) -> Dict[str, int]: """Converts a range defined in A1 notation to a dict representing a `GridRange`_. All indexes are zero-based. Indexes are half open, e.g the start index is inclusive and the end index is exclusive: [startIndex, endIndex). Missing indexes indicate the range is unbounded on that side. .. _GridRange: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#GridRange Examples:: >>> a1_range_to_grid_range('A1:A1') {'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1} >>> a1_range_to_grid_range('A3:B4') {'startRowIndex': 2, 'endRowIndex': 4, 'startColumnIndex': 0, 'endColumnIndex': 2} >>> a1_range_to_grid_range('A:B') {'startColumnIndex': 0, 'endColumnIndex': 2} >>> a1_range_to_grid_range('A5:B') {'startRowIndex': 4, 'startColumnIndex': 0, 'endColumnIndex': 2} >>> a1_range_to_grid_range('A1') {'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1} >>> a1_range_to_grid_range('A') {'startColumnIndex': 0, 'endColumnIndex': 1} >>> a1_range_to_grid_range('1') {'startRowIndex': 0, 'endRowIndex': 1} >>> a1_range_to_grid_range('A1', sheet_id=0) {'sheetId': 0, 'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1} """ start_label, _, end_label = name.partition(":") start_row_index, start_column_index = _a1_to_rowcol_unbounded(start_label) end_row_index, end_column_index = _a1_to_rowcol_unbounded(end_label or start_label) if start_row_index > end_row_index: start_row_index, end_row_index = end_row_index, start_row_index if start_column_index > end_column_index: start_column_index, end_column_index = end_column_index, start_column_index grid_range = { "startRowIndex": start_row_index - 1, "endRowIndex": end_row_index, "startColumnIndex": start_column_index - 1, "endColumnIndex": end_column_index, } filtered_grid_range: Dict[str, int] = { key: value for (key, value) in grid_range.items() if isinstance(value, int) } if sheet_id is not None: filtered_grid_range["sheetId"] = sheet_id return filtered_grid_range def column_letter_to_index(column: str) -> int: """Converts a column letter to its numerical index. This is useful when using the method :meth:`gspread.worksheet.Worksheet.col_values`. Which requires a column index. This function is case-insensitive. Raises :exc:`gspread.exceptions.InvalidInputValue` in case of invalid input. Examples:: >>> column_letter_to_index("a") 1 >>> column_letter_to_index("A") 1 >>> column_letter_to_index("AZ") 52 >>> column_letter_to_index("!@#$%^&") ... gspread.exceptions.InvalidInputValue: invalid value: !@#$%^&, must be a column letter """ try: (_, index) = _a1_to_rowcol_unbounded(column) except IncorrectCellLabel: # make it coherent and raise the same exception in case of any error # from user input value raise InvalidInputValue( "invalid value: {}, must be a column letter".format(column) ) if not isinstance(index, int): raise InvalidInputValue( "invalid value: {}, must be a column letter".format(column) ) return index def cast_to_a1_notation(method: Callable[..., T]) -> Callable[..., T]: """Decorator function casts wrapped arguments to A1 notation in range method calls. """ def contains_row_cols(args: Tuple[Any, ...]) -> bool: return ( isinstance(args[0], int) and isinstance(args[1], int) and isinstance(args[2], int) and isinstance(args[3], int) ) @wraps(method) def wrapper(self: Any, *args: Any, **kwargs: Any) -> Any: try: if len(args) >= 4 and contains_row_cols(args): # Convert to A1 notation # Assuming rowcol_to_a1 has appropriate typing range_start = rowcol_to_a1(*args[:2]) # Assuming rowcol_to_a1 has appropriate typing range_end = rowcol_to_a1(*args[2:4]) range_name = ":".join((range_start, range_end)) args = (range_name,) + args[4:] except ValueError: pass return method(self, *args, **kwargs) return wrapper def extract_id_from_url(url: str) -> str: m2 = URL_KEY_V2_RE.search(url) if m2: return m2.group(1) m1 = URL_KEY_V1_RE.search(url) if m1: return m1.group(1) raise NoValidUrlKeyFound def wid_to_gid(wid: str) -> str: """Calculate gid of a worksheet from its wid.""" widval = wid[1:] if len(wid) > 3 else wid xorval = 474 if len(wid) > 3 else 31578 return str(int(widval, 36) ^ xorval) def rightpad(row: List[Any], max_len: int, padding_value: Any = "") -> List[Any]: pad_len = max_len - len(row) return row + ([padding_value] * pad_len) if pad_len != 0 else row def fill_gaps( L: List[List[Any]], rows: Optional[int] = None, cols: Optional[int] = None, padding_value: Any = "", ) -> List[List[Any]]: """Fill gaps in a list of lists. e.g.,:: >>> L = [ ... [1, 2, 3], ... ] >>> fill_gaps(L, 2, 4) [ [1, 2, 3, ""], ["", "", "", ""] ] :param L: List of lists to fill gaps in. :param rows: Number of rows to fill. :param cols: Number of columns to fill. :param padding_value: Default value to fill gaps with. :type L: list[list[T]] :type rows: int :type cols: int :type padding_value: T :return: List of lists with gaps filled. :rtype: list[list[T]]: """ try: max_cols = max(len(row) for row in L) if cols is None else cols max_rows = len(L) if rows is None else rows pad_rows = max_rows - len(L) if pad_rows: L = L + ([[]] * pad_rows) return [rightpad(row, max_cols, padding_value=padding_value) for row in L] except ValueError: return [[]] def cell_list_to_rect(cell_list: List["Cell"]) -> List[List[Optional[str]]]: if not cell_list: return [] rows: Dict[int, Dict[int, Optional[str]]] = defaultdict(dict) row_offset = min(c.row for c in cell_list) col_offset = min(c.col for c in cell_list) for cell in cell_list: row = rows.setdefault(int(cell.row) - row_offset, {}) row[cell.col - col_offset] = cell.value if not rows: return [] all_row_keys = chain.from_iterable(row.keys() for row in rows.values()) rect_cols = range(max(all_row_keys) + 1) rect_rows = range(max(rows.keys()) + 1) # Return the values of the cells as a list of lists where each sublist # contains all of the values for one row. The Google API requires a rectangle # of updates, so if a cell isn't present in the input cell_list, then the # value will be None and will not be updated. return [[rows[i].get(j) for j in rect_cols] for i in rect_rows] def quote(value: str, safe: str = "", encoding: str = "utf-8") -> str: return uquote(value.encode(encoding), safe) def absolute_range_name(sheet_name: str, range_name: Optional[str] = None) -> str: """Return an absolutized path of a range. >>> absolute_range_name("Sheet1", "A1:B1") "'Sheet1'!A1:B1" >>> absolute_range_name("Sheet1", "A1") "'Sheet1'!A1" >>> absolute_range_name("Sheet1") "'Sheet1'" >>> absolute_range_name("Sheet'1") "'Sheet''1'" >>> absolute_range_name("Sheet''1") "'Sheet''''1'" >>> absolute_range_name("''sheet12''", "A1:B2") "'''''sheet12'''''!A1:B2" """ sheet_name = "'{}'".format(sheet_name.replace("'", "''")) if range_name: return "{}!{}".format(sheet_name, range_name) else: return sheet_name def is_scalar(x: Any) -> bool: """Return True if the value is scalar. A scalar is not a sequence but can be a string. >>> is_scalar([]) False >>> is_scalar([1, 2]) False >>> is_scalar(42) True >>> is_scalar('nice string') True >>> is_scalar({}) True >>> is_scalar(set()) True """ return isinstance(x, str) or not isinstance(x, Sequence) def combined_merge_values( worksheet_metadata: Mapping[str, Any], values: List[List[Any]], start_row_index: int, start_col_index: int, ) -> List[List[Any]]: """For each merged region, replace all values with the value of the top-left cell of the region. e.g., replaces [ [1, None, None], [None, None, None], ] with [ [1, 1, None], [1, 1, None], ] if the top-left four cells are merged. :param worksheet_metadata: The metadata returned by the Google API for the worksheet. Should have a "merges" key. :param values: The values returned by the Google API for the worksheet. 2D array. :param start_row_index: The index of the first row of the values in the worksheet. e.g., if the values are in rows 3-5, this should be 2. :param start_col_index: The index of the first column of the values in the worksheet. e.g., if the values are in columns C-E, this should be 2. :returns: matrix of values with merged coordinates filled according to top-left value :rtype: list(list(any)) """ merges = worksheet_metadata.get("merges", []) # each merge has "startRowIndex", "endRowIndex", "startColumnIndex", "endColumnIndex new_values = [list(row) for row in values] # max row and column indices max_row_index = len(values) - 1 max_col_index = len(values[0]) - 1 for merge in merges: merge_start_row, merge_end_row = merge["startRowIndex"], merge["endRowIndex"] merge_start_col, merge_end_col = ( merge["startColumnIndex"], merge["endColumnIndex"], ) # subtract offset merge_start_row -= start_row_index merge_end_row -= start_row_index merge_start_col -= start_col_index merge_end_col -= start_col_index # if out of bounds, ignore if merge_start_row > max_row_index or merge_start_col > max_col_index: continue if merge_start_row < 0 or merge_start_col < 0: continue top_left_value = values[merge_start_row][merge_start_col] row_indices = range(merge_start_row, merge_end_row) col_indices = range(merge_start_col, merge_end_col) for row_index in row_indices: for col_index in col_indices: # if out of bounds, ignore if row_index > max_row_index or col_index > max_col_index: continue new_values[row_index][col_index] = top_left_value return new_values def convert_hex_to_colors_dict(hex_color: str) -> Mapping[str, float]: """Convert a hex color code to RGB color values. :param str hex_color: Hex color code in the format "#RRGGBB". :returns: Dict containing the color's red, green and blue values between 0 and 1. :rtype: dict :raises: ValueError: If the input hex string is not in the correct format or length. Examples: >>> convert_hex_to_colors_dict("#3300CC") {'red': 0.2, 'green': 0.0, 'blue': 0.8} >>> convert_hex_to_colors_dict("#30C") {'red': 0.2, 'green': 0.0, 'blue': 0.8} """ hex_color = hex_color.lstrip("#") # Google API ColorStyle Reference: # "The alpha value in the Color object isn't generally supported." # https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#colorstyle if len(hex_color) == 8: hex_color = hex_color[:-2] # Expand 3 character hex. if len(hex_color) == 3: hex_color = "".join([char * 2 for char in hex_color]) if len(hex_color) != 6: raise ValueError("Hex color code must be in the format '#RRGGBB'.") try: rgb_color = { "red": int(hex_color[0:2], 16) / 255, "green": int(hex_color[2:4], 16) / 255, "blue": int(hex_color[4:6], 16) / 255, } return rgb_color except ValueError as ex: raise ValueError(f"Invalid character in hex color string: #{hex_color}") from ex def convert_colors_to_hex_value( red: float = 0.0, green: float = 0.0, blue: float = 0.0 ) -> str: """Convert RGB color values to a hex color code. :param float red: Red color value (0-1). :param float green: Green color value (0-1). :param float blue: Blue color value (0-1). :returns: Hex color code in the format "#RRGGBB". :rtype: str :raises: ValueError: If any color value is out of the accepted range (0-1). Example: >>> convert_colors_to_hex_value(0.2, 0, 0.8) '#3300CC' >>> convert_colors_to_hex_value(green=0.5) '#008000' """ def to_hex(value: float) -> str: """ Convert an integer to a 2-digit uppercase hex string. """ hex_value = hex(round(value * 255))[2:] return hex_value.upper().zfill(2) if any(value < 0 or value > 1 for value in (red, green, blue)): raise ValueError("Color value out of accepted range 0-1.") return f"#{to_hex(red)}{to_hex(green)}{to_hex(blue)}" def is_full_a1_notation(range_name: str) -> bool: """Check if the range name is a full A1 notation. "A1:B2", "Sheet1!A1:B2" are full A1 notations "A1:B", "A1" are not Args: range_name (str): The range name to check. Returns: bool: True if the range name is a full A1 notation, False otherwise. Examples: >>> is_full_a1_notation("A1:B2") True >>> is_full_a1_notation("A1:B") False """ return A1_ADDR_FULL_RE.search(range_name) is not None def get_a1_from_absolute_range(range_name: str) -> str: """Get the A1 notation from an absolute range name. "Sheet1!A1:B2" -> "A1:B2" "A1:B2" -> "A1:B2" Args: range_name (str): The range name to check. Returns: str: The A1 notation of the range name stripped of the sheet. """ if "!" in range_name: return range_name.split("!")[1] return range_name def to_records( headers: Iterable[Any] = [], values: Iterable[Iterable[Any]] = [[]] ) -> List[Dict[str, Union[str, int, float]]]: """Builds the list of dictionaries, all of them have the headers sequence as keys set, each key is associated to the corresponding value for the same index in each list from the matrix ``values``. There are as many dictionaries as they are entry in the list of given values. :param list: headers the key set for all dictionaries :param list: values a matrix of values Examples:: >>> to_records(["name", "City"], [["Spiderman", "NY"], ["Batman", "Gotham"]]) [ { "Name": "Spiderman", "City": "NY", }, { "Name": "Batman", "City": "Gotham", }, ] """ return [dict(zip(headers, row)) for row in values] def _expand_right(values: List[List[str]], start: int, end: int, row: int) -> int: """This is a private function, returning the column index of the last non empty cell on the given row. Search starts from ``start`` index column. Search ends on ``end`` index column. Searches only in the row pointed by ``row``. """ try: return values[row].index("", start, end) - 1 except ValueError: return end def _expand_bottom(values: List[List[str]], start: int, end: int, col: int) -> int: """This is a private function, returning the row index of the last non empty cell on the given column. Search starts from ``start`` index row. Search ends on ``end`` index row. Searches only in the column pointed by ``col``. """ for rows in range(start, end): # in case we try to look further than last row if rows >= len(values): return len(values) - 1 # check if cell is empty (or the row => empty cell) if col >= len(values[rows]) or values[rows][col] == "": return rows - 1 return end - 1 def find_table( values: List[List[str]], start_range: str, direction: TableDirection = TableDirection.table, ) -> List[List[str]]: """Expands a list of values based on non-null adjacent cells. Expand can be done in 3 directions defined in :class:`~gspread.utils.TableDirection` * ``TableDirection.right``: expands right until the first empty cell * ``TableDirection.down``: expands down until the first empty cell * ``TableDirection.table``: expands right until the first empty cell and down until first empty cell In case of empty result an empty list is restuned. When the given ``start_range`` is outside the given matrix of values the exception :class:`~gspread.exceptions.InvalidInputValue` is raised. Example:: values = [ ['', '', '', '', '' ], ['', 'B2', 'C2', '', 'E2'], ['', 'B3', 'C3', '', 'E3'], ['', '' , '' , '', 'E4'], ] >>> utils.find_table(TableDirection.table, 'B2') [ ['B2', 'C2'], ['B3', 'C3'], ] .. note:: the ``TableDirection.table`` will look right from starting cell then look down from starting cell. It will not check cells located inside the table. This could lead to potential empty values located in the middle of the table. .. warning:: Given values must be padded with `''` empty values. :param list[list] values: values where to find the table. :param gspread.utils.TableDirection direction: the expand direction. :param str start_range: the starting cell range. :rtype list(list): the resulting matrix """ row, col = a1_to_rowcol(start_range) # a1_to_rowcol returns coordinates starting form 1 row -= 1 col -= 1 if row >= len(values): raise InvalidInputValue( "given row for start_range is outside given values: start range row ({}) >= rows in values {}".format( row, len(values) ) ) if col >= len(values[row]): raise InvalidInputValue( "given column for start_range is outside given values: start range column ({}) >= columns in values {}".format( col, len(values[row]) ) ) if direction == TableDirection.down: rightMost = col bottomMost = _expand_bottom(values, row, len(values), col) if direction == TableDirection.right: bottomMost = row rightMost = _expand_right(values, col, len(values[row]), row) if direction == TableDirection.table: rightMost = _expand_right(values, col, len(values[row]), row) bottomMost = _expand_bottom(values, row, len(values), col) result = [] # build resulting array for rows in values[row : bottomMost + 1]: result.append(rows[col : rightMost + 1]) return result # SHOULD NOT BE NEEDED UNTIL NEXT MAJOR VERSION # DEPRECATION_WARNING_TEMPLATE = ( # "[Deprecated][in version {v_deprecated}]: {msg_deprecated}" # ) # SILENCE_WARNINGS_ENV_KEY = "GSPREAD_SILENCE_WARNINGS" # def deprecation_warning(version: str, msg: str) -> None: # """Emit a deprecation warning. # ..note:: # This warning can be silenced by setting the environment variable: # GSPREAD_SILENCE_WARNINGS=1 # """ # # do not emit warning if env variable is set specifically to 1 # if os.getenv(SILENCE_WARNINGS_ENV_KEY, "0") == "1": # return # warnings.warn( # DEPRECATION_WARNING_TEMPLATE.format(v_deprecated=version, msg_deprecated=msg), # DeprecationWarning, # 4, # showd the 4th stack: [1]:current->[2]:deprecation_warning->[3]:->[4]: # ) if __name__ == "__main__": import doctest doctest.testmod() ================================================ FILE: gspread/worksheet.py ================================================ """ gspread.worksheet ~~~~~~~~~~~~~~~~~ This module contains common worksheets' models. """ import re import warnings from collections import Counter from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, Iterator, List, Literal, Mapping, MutableMapping, Optional, Sequence, Tuple, Type, TypedDict, TypeVar, Union, ) from .cell import Cell from .exceptions import GSpreadException from .http_client import HTTPClient, ParamsType from .urls import WORKSHEET_DRIVE_URL from .utils import ( DateTimeOption, Dimension, GridRangeType, InsertDataOption, MergeType, PasteOrientation, PasteType, T, TableDirection, ValidationConditionType, ValueInputOption, ValueRenderOption, a1_range_to_grid_range, a1_to_rowcol, absolute_range_name, cast_to_a1_notation, cell_list_to_rect, combined_merge_values, convert_colors_to_hex_value, convert_hex_to_colors_dict, fill_gaps, find_table, finditem, get_a1_from_absolute_range, is_full_a1_notation, numericise_all, rowcol_to_a1, to_records, ) if TYPE_CHECKING is True: from .spreadsheet import Spreadsheet CellFormat = TypedDict( "CellFormat", { "range": str, "format": Mapping[str, Any], }, ) BatchData = TypedDict("BatchData", {"range": str, "values": List[List[Any]]}) JSONResponse = MutableMapping[str, Any] ValueRangeType = TypeVar("ValueRangeType", bound="ValueRange") class ValueRange(list): """The class holds the returned values. This class inherit the :const:`list` object type. It behaves exactly like a list. The values are stored in a matrix. The property :meth:`gspread.worksheet.ValueRange.major_dimension` holds the major dimension of the first list level. The inner lists will contain the actual values. Examples:: >>> worksheet.get("A1:B2") [ [ "A1 value", "B1 values", ], [ "A2 value", "B2 value", ] ] >>> worksheet.get("A1:B2").major_dimension ROW .. note:: This class should never be instantiated manually. It will be instantiated using the response from the sheet API. """ _json: MutableMapping[str, str] = {} @classmethod def from_json(cls: Type[ValueRangeType], json: Mapping[str, Any]) -> ValueRangeType: values = json.get("values", []) new_obj = cls(values) new_obj._json = { "range": json["range"], "majorDimension": json["majorDimension"], } return new_obj @property def range(self) -> str: """The range of the values""" return self._json["range"] @property def major_dimension(self) -> str: """The major dimension of this range Can be one of: * ``ROW``: the first list level holds rows of values * ``COLUMNS``: the first list level holds columns of values """ return self._json["majorDimension"] def first(self, default: Optional[str] = None) -> Optional[str]: """Returns the value of a first cell in a range. If the range is empty, return the default value. """ try: return self[0][0] except IndexError: return default class Worksheet: """The class that represents a single sheet in a spreadsheet (aka "worksheet"). """ def __init__( self, spreadsheet: "Spreadsheet", properties: MutableMapping[str, Any], spreadsheet_id: Optional[str] = None, client: Optional[HTTPClient] = None, ): # This object is not intended to be created manually # only using gspread code like: spreadsheet.get_worksheet(0) # keep it backward compatible signarure but raise with explicit message # in case of missing new attributes if spreadsheet_id is None or "": raise RuntimeError( """Missing spreadsheet_id parameter, it must be provided with a valid spreadsheet ID. Please allocate new Worksheet object using method like: spreadsheet.get_worksheet(0) """ ) if client is None or not isinstance(client, HTTPClient): raise RuntimeError( """Missing HTTP Client, it must be provided with a valid instance of type gspread.http_client.HTTPClient . Please allocate new Worksheet object using method like: spreadsheet.get_worksheet(0) """ ) self.spreadsheet_id = spreadsheet_id self.client = client self._properties = properties # kept for backward compatibility - publicly available # do not use if possible. self._spreadsheet = spreadsheet def __repr__(self) -> str: return "<{} {} id:{}>".format( self.__class__.__name__, repr(self.title), self.id, ) @property def id(self) -> int: """Worksheet ID.""" return self._properties["sheetId"] @property def spreadsheet(self) -> "Spreadsheet": """Parent spreadsheet""" return self._spreadsheet @property def title(self) -> str: """Worksheet title.""" return self._properties["title"] @property def url(self) -> str: """Worksheet URL.""" return WORKSHEET_DRIVE_URL % (self.spreadsheet_id, self.id) @property def index(self) -> int: """Worksheet index.""" return self._properties["index"] @property def isSheetHidden(self) -> bool: """Worksheet hidden status.""" # if the property is not set then hidden=False return self._properties.get("hidden", False) @property def row_count(self) -> int: """Number of rows.""" return self._properties["gridProperties"]["rowCount"] @property def col_count(self) -> int: """Number of columns. .. warning:: This value is fetched when opening the worksheet. This is not dynamically updated when adding columns, yet. """ return self._properties["gridProperties"]["columnCount"] @property def column_count(self) -> int: """Number of columns""" return self.col_count @property def frozen_row_count(self) -> int: """Number of frozen rows.""" return self._properties["gridProperties"].get("frozenRowCount", 0) @property def frozen_col_count(self) -> int: """Number of frozen columns.""" return self._properties["gridProperties"].get("frozenColumnCount", 0) @property def is_gridlines_hidden(self) -> bool: """Whether or not gridlines hidden. Boolean. True if hidden. False if shown. """ return self._properties["gridProperties"].get("hideGridlines", False) @property def tab_color(self) -> Optional[str]: """Tab color style. Hex with RGB color values.""" return self.get_tab_color() def get_tab_color(self) -> Optional[str]: """Tab color style in hex format. String.""" tab_color = self._properties.get("tabColorStyle", {}).get("rgbColor", None) if tab_color is None: return None return convert_colors_to_hex_value(**tab_color) def _get_sheet_property(self, property: str, default_value: Optional[T]) -> T: """return a property of this worksheet or default value if not found""" meta = self.client.fetch_sheet_metadata(self.spreadsheet_id) sheet = finditem( lambda x: x["properties"]["sheetId"] == self.id, meta["sheets"] ) return sheet.get(property, default_value) def acell( self, label: str, value_render_option: ValueRenderOption = ValueRenderOption.formatted, ) -> Cell: """Returns an instance of a :class:`gspread.cell.Cell`. :param label: Cell label in A1 notation Letter case is ignored. :type label: str :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. :type value_render_option: :class:`~gspread.utils.ValueRenderOption` .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption Example: >>> worksheet.acell('A1') """ return self.cell( *(a1_to_rowcol(label)), value_render_option=value_render_option ) def cell( self, row: int, col: int, value_render_option: ValueRenderOption = ValueRenderOption.formatted, ) -> Cell: """Returns an instance of a :class:`gspread.cell.Cell` located at `row` and `col` column. :param row: Row number. :type row: int :param col: Column number. :type col: int :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. :type value_render_option: :class:`~gspread.utils.ValueRenderOption` .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption Example: >>> worksheet.cell(1, 1) :rtype: :class:`gspread.cell.Cell` """ try: data = self.get( rowcol_to_a1(row, col), value_render_option=value_render_option, return_type=GridRangeType.ValueRange, ) # we force a return type to GridRangeType.ValueRange # help typing tool to see it too :-) if isinstance(data, ValueRange): value = data.first() else: raise RuntimeError("returned data must be of type ValueRange") except KeyError: value = "" return Cell(row, col, value) @cast_to_a1_notation def range(self, name: str = "") -> List[Cell]: """Returns a list of :class:`gspread.cell.Cell` objects from a specified range. :param name: A string with range value in A1 notation (e.g. 'A1:A5') or the named range to fetch. :type name: str Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number :rtype: list Example:: >>> # Using A1 notation >>> worksheet.range('A1:B7') [, ...] >>> # Same with numeric boundaries >>> worksheet.range(1, 1, 7, 2) [, ...] >>> # Named ranges work as well >>> worksheet.range('NamedRange') [, ...] >>> # All values in a single API call >>> worksheet.range() [, ...] """ range_label = absolute_range_name(self.title, name) data = self.client.values_get(self.spreadsheet_id, range_label) if ":" not in name: name = data.get("range", "") if "!" in name: name = name.split("!")[1] grid_range = a1_range_to_grid_range(name) values = data.get("values", []) row_offset = grid_range.get("startRowIndex", 0) column_offset = grid_range.get("startColumnIndex", 0) last_row = grid_range.get("endRowIndex", self.row_count) last_column = grid_range.get("endColumnIndex", self.col_count) if last_row is not None: last_row -= row_offset if last_column is not None: last_column -= column_offset rect_values = fill_gaps( values, rows=last_row, cols=last_column, ) return [ Cell(row=i + row_offset + 1, col=j + column_offset + 1, value=value) for i, row in enumerate(rect_values) for j, value in enumerate(row) ] def get_values( self, range_name: Optional[str] = None, major_dimension: Optional[Dimension] = None, value_render_option: Optional[ValueRenderOption] = None, date_time_render_option: Optional[DateTimeOption] = None, combine_merged_cells: bool = False, maintain_size: bool = False, pad_values: bool = True, return_type: GridRangeType = GridRangeType.ListOfLists, ) -> Union[ValueRange, List[List[Any]]]: """Alias for :meth:`~gspread.worksheet.Worksheet.get`... with ``return_type`` set to ``List[List[Any]]`` and ``pad_values`` set to ``True`` (legacy method) """ return self.get( range_name=range_name, major_dimension=major_dimension, value_render_option=value_render_option, date_time_render_option=date_time_render_option, combine_merged_cells=combine_merged_cells, maintain_size=maintain_size, pad_values=pad_values, return_type=return_type, ) def get_all_values( self, range_name: Optional[str] = None, major_dimension: Optional[Dimension] = None, value_render_option: Optional[ValueRenderOption] = None, date_time_render_option: Optional[DateTimeOption] = None, combine_merged_cells: bool = False, maintain_size: bool = False, pad_values: bool = True, return_type: GridRangeType = GridRangeType.ListOfLists, ) -> Union[ValueRange, List[List[Any]]]: """Alias to :meth:`~gspread.worksheet.Worksheet.get_values`""" return self.get_values( range_name=range_name, major_dimension=major_dimension, value_render_option=value_render_option, date_time_render_option=date_time_render_option, combine_merged_cells=combine_merged_cells, maintain_size=maintain_size, pad_values=pad_values, return_type=return_type, ) def get_all_records( self, head: int = 1, expected_headers: Optional[List[str]] = None, value_render_option: Optional[ValueRenderOption] = None, default_blank: Any = "", numericise_ignore: Iterable[Union[str, int]] = [], allow_underscores_in_numeric_literals: bool = False, empty2zero: bool = False, ) -> List[Dict[str, Union[int, float, str]]]: """Returns a list of dictionaries, all of them having the contents of the spreadsheet with the head row as keys and each of these dictionaries holding the contents of subsequent rows of cells as values. This method uses the function :func:`gspread.utils.to_records` to build the resulting records. It mainly wraps around the function and handles the simplest use case using a header row (default = 1) and the rest of the entire sheet. .. note:: For more particular use-cases, please get your dataset, your headers and then use the function :func:`gspread.utils.to_records` to build the records. Cell values are numericised (strings that can be read as ints or floats are converted), unless specified in numericise_ignore :param int head: (optional) Determines which row to use as keys, starting from 1 following the numeration of the spreadsheet. :param list expected_headers: (optional) List of expected headers, they must be unique. .. note:: Returned dictionaries will contain all headers even if not included in this list. :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. :type value_render_option: :class:`~gspread.utils.ValueRenderOption` :param Any default_blank: (optional) Determines which value to use for blank cells, defaults to empty string. :param list numericise_ignore: (optional) List of ints of indices of the columns (starting at 1) to ignore numericising, special use of ['all'] to ignore numericising on all columns. :param bool allow_underscores_in_numeric_literals: (optional) Allow underscores in numeric literals, as introduced in PEP 515 :param bool empty2zero: (optional) Determines whether empty cells are converted to zeros when numericised, defaults to False. Examples:: # Sheet data: # A B C # # 1 A1 B2 C3 # 2 A6 B7 C8 # 3 A11 B12 C13 # Read all rows from the sheet >>> worksheet.get_all_records() [ {"A1": "A6", "B2": "B7", "C3": "C8"}, {"A1": "A11", "B2": "B12", "C3": "C13"} ] """ entire_sheet = self.get( value_render_option=value_render_option, pad_values=True, ) if entire_sheet == [[]]: # see test_get_all_records_with_all_values_blank # we don't know the length of the sheet so we return [] return [] keys = entire_sheet[head - 1] values = entire_sheet[head:] def get_dupes(items): counts = Counter(items) return [item for item in counts if counts[item] > 1] if expected_headers is None: duplicates = get_dupes(keys) if duplicates: raise GSpreadException( f"the header row in the worksheet contains duplicates: {duplicates}" "To manually set the header row, use the `expected_headers` " "parameter of `get_all_records()`" ) else: duplicates = get_dupes(expected_headers) if duplicates: raise GSpreadException( f"the given 'expected_headers' contains duplicates: {duplicates}" ) # expected headers must be a subset of the actual headers if not all(header in keys for header in expected_headers): raise GSpreadException( "the given 'expected_headers' contains unknown headers: " f"{set(expected_headers) - set(keys)}" ) if numericise_ignore == ["all"]: pass else: values = [ numericise_all( row, empty2zero, default_blank, allow_underscores_in_numeric_literals, numericise_ignore, # type: ignore ) for row in values ] return to_records(keys, values) def get_all_cells(self) -> List[Cell]: """Returns a list of all `Cell` of the current sheet.""" return self.range() def row_values( self, row: int, major_dimension: Optional[Dimension] = None, value_render_option: Optional[ValueRenderOption] = None, date_time_render_option: Optional[DateTimeOption] = None, ) -> List[str]: """Returns a list of all values in a `row`. Empty cells in this list will be rendered as :const:`None`. :param int row: Row number (one-based). :param str major_dimension: (optional) The major dimension of the values. `Dimension.rows` ("ROWS") or `Dimension.cols` ("COLUMNS"). Defaults to Dimension.rows :type major_dimension: :class:`~gspread.utils.Dimension` :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. Possible values are: ``ValueRenderOption.formatted`` (default) Values will be calculated and formatted according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. ``ValueRenderOption.unformatted`` Values will be calculated, but not formatted in the reply. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return the number 1.23. ``ValueRenderOption.formula`` Values will not be calculated. The reply will include the formulas. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "=A1". .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption :type value_render_option: :class:`~gspread.utils.ValueRenderOption` :param date_time_render_option: (optional) How dates, times, and durations should be represented in the output. Possible values are: ``DateTimeOption.serial_number`` (default) Instructs date, time, datetime, and duration fields to be output as doubles in "serial number" format, as popularized by Lotus 1-2-3. ``DateTimeOption.formatted_string`` Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale). .. note:: This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``. The default ``date_time_render_option`` is ``DateTimeOption.serial_number``. :type date_time_render_option: :class:`~gspread.utils.DateTimeOption` """ try: data = self.get( "A{}:{}".format(row, row), major_dimension, value_render_option, date_time_render_option, ) return data[0] if data else [] except KeyError: return [] def col_values( self, col: int, value_render_option: ValueRenderOption = ValueRenderOption.formatted, ) -> List[Optional[Union[int, float, str]]]: """Returns a list of all values in column `col`. Empty cells in this list will be rendered as :const:`None`. :param int col: Column number (one-based). :param str value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. :type value_render_option: :class:`~gspread.utils.ValueRenderOption` .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption """ start_label = rowcol_to_a1(1, col) range_label = "{}:{}".format(start_label, start_label[:-1]) range_name = absolute_range_name(self.title, range_label) data = self.client.values_get( self.spreadsheet_id, range_name, params={ "valueRenderOption": value_render_option, "majorDimension": Dimension.cols, }, ) try: return data["values"][0] except KeyError: return [] def update_acell(self, label: str, value: Union[int, float, str]) -> JSONResponse: """Updates the value of a cell. :param str label: Cell label in A1 notation. :param value: New value. Example:: worksheet.update_acell('A1', '42') """ return self.update_cell(*(a1_to_rowcol(label)), value=value) def update_cell( self, row: int, col: int, value: Union[int, float, str] ) -> JSONResponse: """Updates the value of a cell. :param int row: Row number. :param int col: Column number. :param value: New value. Example:: worksheet.update_cell(1, 1, '42') """ range_name = absolute_range_name(self.title, rowcol_to_a1(row, col)) data = self.client.values_update( self.spreadsheet_id, range_name, params={"valueInputOption": ValueInputOption.user_entered}, body={"values": [[value]]}, ) return data def update_cells( self, cell_list: List[Cell], value_input_option: ValueInputOption = ValueInputOption.raw, ) -> Mapping[str, Any]: """Updates many cells at once. :param list cell_list: List of :class:`gspread.cell.Cell` objects to update. :param value_input_option: (optional) How the input data should be interpreted. Possible values are: ``ValueInputOption.raw`` (default) The values the user has entered will not be parsed and will be stored as-is. ``ValueInputOption.user_entered`` The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI. See `ValueInputOption`_ in the Sheets API. :type value_input_option: :namedtuple:`~gspread.utils.ValueInputOption` .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption Example:: # Select a range cell_list = worksheet.range('A1:C7') for cell in cell_list: cell.value = 'O_o' # Update in batch worksheet.update_cells(cell_list) """ values_rect = cell_list_to_rect(cell_list) start = rowcol_to_a1( min(c.row for c in cell_list), min(c.col for c in cell_list) ) end = rowcol_to_a1(max(c.row for c in cell_list), max(c.col for c in cell_list)) range_name = absolute_range_name(self.title, "{}:{}".format(start, end)) data = self.client.values_update( self.spreadsheet_id, range_name, params={"valueInputOption": value_input_option}, body={"values": values_rect}, ) return data def get( self, range_name: Optional[str] = None, major_dimension: Optional[Dimension] = None, value_render_option: Optional[ValueRenderOption] = None, date_time_render_option: Optional[DateTimeOption] = None, combine_merged_cells: bool = False, maintain_size: bool = False, pad_values: bool = False, return_type: GridRangeType = GridRangeType.ValueRange, ) -> Union[ValueRange, List[List[str]]]: """Reads values of a single range or a cell of a sheet. Returns a ValueRange (list of lists) containing all values from a specified range or cell By default values are returned as strings. See ``value_render_option`` to change the default format. :param str range_name: (optional) Cell range in the A1 notation or a named range. If not specified the method returns values from all non empty cells. :param str major_dimension: (optional) The major dimension of the values. `Dimension.rows` ("ROWS") or `Dimension.cols` ("COLUMNS"). Defaults to Dimension.rows :type major_dimension: :class:`~gspread.utils.Dimension` :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. Possible values are: ``ValueRenderOption.formatted`` (default) Values will be calculated and formatted according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. ``ValueRenderOption.unformatted`` Values will be calculated, but not formatted in the reply. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return the number 1.23. ``ValueRenderOption.formula`` Values will not be calculated. The reply will include the formulas. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "=A1". .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption :type value_render_option: :class:`~gspread.utils.ValueRenderOption` :param str date_time_render_option: (optional) How dates, times, and durations should be represented in the output. Possible values are: ``DateTimeOption.serial_number`` (default) Instructs date, time, datetime, and duration fields to be output as doubles in "serial number" format, as popularized by Lotus 1-2-3. ``DateTimeOption.formatted_string`` Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale). .. note:: This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``. The default ``date_time_render_option`` is ``DateTimeOption.serial_number``. :type date_time_render_option: :class:`~gspread.utils.DateTimeOption` :param bool combine_merged_cells: (optional) If True, then all cells that are part of a merged cell will have the same value as the top-left cell of the merged cell. Defaults to False. .. warning:: Setting this to True will cause an additional API request to be made to retrieve the values of all merged cells. :param bool maintain_size: (optional) If True, then the returned values will have the same size as the requested range_name. Defaults to False. :param bool pad_values: (optional) If True, then empty cells will be filled with empty strings. Defaults to False. .. warning:: The returned array will not be rectangular unless this is set to True. If this is a problem, see also `maintain_size`. :param GridRangeType return_type: (optional) The type of object to return. Defaults to :class:`gspread.utils.GridRangeType.ValueRange`. The other option is `gspread.utils.GridRangeType.ListOfLists`. :rtype: :class:`gspread.worksheet.ValueRange` .. versionadded:: 3.3 Examples:: # Return all values from the sheet worksheet.get() # Return value of 'A1' cell worksheet.get('A1') # Return values of 'A1:B2' range worksheet.get('A1:B2') # Return all values from columns "A" and "B" worksheet.get('A:B') # Return values of 'my_range' named range worksheet.get('my_range') # Return unformatted values (e.g. numbers as numbers) worksheet.get('A2:B4', value_render_option=ValueRenderOption.unformatted) # Return cell values without calculating formulas worksheet.get('A2:B4', value_render_option=ValueRenderOption.formula) """ # do not override the given range name with the build up range name for the actual request get_range_name = absolute_range_name(self.title, range_name) params: ParamsType = { "majorDimension": major_dimension, "valueRenderOption": value_render_option, "dateTimeRenderOption": date_time_render_option, } response = self.client.values_get( self.spreadsheet_id, get_range_name, params=params ) values = response.get("values", [[]]) if pad_values is True: try: values = fill_gaps(values) except KeyError: values = [[]] if combine_merged_cells is True: spreadsheet_meta = self.client.fetch_sheet_metadata(self.spreadsheet_id) worksheet_meta = finditem( lambda x: x["properties"]["title"] == self.title, spreadsheet_meta["sheets"], ) # deal with named ranges named_ranges = spreadsheet_meta.get("namedRanges", []) # if there is a named range with the name range_name if any( range_name == ss_namedRange["name"] for ss_namedRange in named_ranges if ss_namedRange.get("name") ): ss_named_range = finditem( lambda x: x["name"] == range_name, named_ranges ) grid_range = ss_named_range.get("range", {}) # norrmal range_name, i.e., A1:B2 elif range_name is not None: a1 = get_a1_from_absolute_range(range_name) grid_range = a1_range_to_grid_range(a1) # no range_name, i.e., all values else: grid_range = worksheet_meta.get("basicFilter", {}).get("range", {}) values = combined_merge_values( worksheet_metadata=worksheet_meta, values=values, start_row_index=grid_range.get("startRowIndex", 0), start_col_index=grid_range.get("startColumnIndex", 0), ) # In case range_name is None range_name = range_name or "" # range_name must be a full grid range so that we can guarantee # startRowIndex and endRowIndex properties if maintain_size is True and is_full_a1_notation(range_name): a1_range = get_a1_from_absolute_range(range_name) grid_range = a1_range_to_grid_range(a1_range) rows = grid_range["endRowIndex"] - grid_range["startRowIndex"] cols = grid_range["endColumnIndex"] - grid_range["startColumnIndex"] values = fill_gaps(values, rows=rows, cols=cols) if return_type is GridRangeType.ValueRange: response["values"] = values return ValueRange.from_json(response) if return_type is GridRangeType.ListOfLists: return values raise ValueError("return_type must be either ValueRange or ListOfLists") def batch_get( self, ranges: Iterable[str], major_dimension: Optional[Dimension] = None, value_render_option: Optional[ValueRenderOption] = None, date_time_render_option: Optional[DateTimeOption] = None, ) -> List[ValueRange]: """Returns one or more ranges of values from the sheet. :param list ranges: List of cell ranges in the A1 notation or named ranges. :param str major_dimension: (optional) The major dimension of the values. `Dimension.rows` ("ROWS") or `Dimension.cols` ("COLUMNS"). Defaults to Dimension.rows :type major_dimension: :class:`~gspread.utils.Dimension` :param value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. Possible values are: ``ValueRenderOption.formatted`` (default) Values will be calculated and formatted according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. ``ValueRenderOption.unformatted`` Values will be calculated, but not formatted in the reply. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return the number 1.23. ``ValueRenderOption.formula`` Values will not be calculated. The reply will include the formulas. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "=A1". .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption :type value_render_option: :class:`~gspread.utils.ValueRenderOption` :param str date_time_render_option: (optional) How dates, times, and durations should be represented in the output. Possible values are: ``DateTimeOption.serial_number`` (default) Instructs date, time, datetime, and duration fields to be output as doubles in "serial number" format, as popularized by Lotus 1-2-3. ``DateTimeOption.formatted_string`` Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale). .. note:: This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``. The default ``date_time_render_option`` is ``DateTimeOption.serial_number``. :type date_time_render_option: :class:`~gspread.utils.DateTimeOption` .. versionadded:: 3.3 Examples:: # Read values from 'A1:B2' range and 'F12' cell worksheet.batch_get(['A1:B2', 'F12']) """ ranges = [absolute_range_name(self.title, r) for r in ranges if r] params: ParamsType = { "majorDimension": major_dimension, "valueRenderOption": value_render_option, "dateTimeRenderOption": date_time_render_option, } response = self.client.values_batch_get( self.spreadsheet_id, ranges=ranges, params=params ) return [ValueRange.from_json(x) for x in response["valueRanges"]] def update( self, values: Iterable[Iterable[Any]], range_name: Optional[str] = None, raw: bool = True, major_dimension: Optional[Dimension] = None, value_input_option: Optional[ValueInputOption] = None, include_values_in_response: Optional[bool] = None, response_value_render_option: Optional[ValueRenderOption] = None, response_date_time_render_option: Optional[DateTimeOption] = None, ) -> JSONResponse: """Sets values in a cell range of the sheet. :param list values: The data to be written in a matrix format. :param str range_name: (optional) The A1 notation of the values to update. :param bool raw: The values will not be parsed by Sheets API and will be stored as-is. For example, formulas will be rendered as plain strings. Defaults to ``True``. This is a shortcut for the ``value_input_option`` parameter. :param str major_dimension: (optional) The major dimension of the values. `Dimension.rows` ("ROWS") or `Dimension.cols` ("COLUMNS"). Defaults to Dimension.rows :type major_dimension: :class:`~gspread.utils.Dimension` :param str value_input_option: (optional) How the input data should be interpreted. Possible values are: ``ValueInputOption.raw`` (default) The values the user has entered will not be parsed and will be stored as-is. ``ValueInputOption.user_entered`` The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param response_value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. Possible values are: ``ValueRenderOption.formatted`` (default) Values will be calculated and formatted according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. ``ValueRenderOption.unformatted`` Values will be calculated, but not formatted in the reply. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return the number 1.23. ``ValueRenderOption.formula`` Values will not be calculated. The reply will include the formulas. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "=A1". .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption :type response_value_render_option: :class:`~gspread.utils.ValueRenderOption` :param str response_date_time_render_option: (optional) How dates, times, and durations should be represented in the output. Possible values are: ``DateTimeOption.serial_number`` (default) Instructs date, time, datetime, and duration fields to be output as doubles in "serial number" format, as popularized by Lotus 1-2-3. ``DateTimeOption.formatted_string`` Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale). .. note:: This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``. The default ``date_time_render_option`` is ``DateTimeOption.serial_number``. :type date_time_render_option: :class:`~gspread.utils.DateTimeOption` Examples:: # Sets 'Hello world' in 'A2' cell worksheet.update([['Hello world']], 'A2') # Updates cells A1, B1, C1 with values 42, 43, 44 respectively worksheet.update([[42, 43, 44]]) # Updates A2 and A3 with values 42 and 43 # Note that update range can be bigger than values array worksheet.update([[42], [43]], 'A2:B4') # Add a formula worksheet.update([['=SUM(A1:A4)']], 'A5', raw=False) # Update 'my_range' named range with values 42 and 43 worksheet.update([[42], [43]], 'my_range') # Note: named ranges are defined in the scope of # a spreadsheet, so even if `my_range` does not belong to # this sheet it is still updated .. versionadded:: 3.3 """ if isinstance(range_name, (list, tuple)) and isinstance(values, str): warnings.warn( "The order of arguments in worksheet.update() has changed. " "Please pass values first and range_name second" "or used named arguments (range_name=, values=)", DeprecationWarning, stacklevel=2, ) range_name, values = values, range_name full_range_name = absolute_range_name(self.title, range_name) if not value_input_option: value_input_option = ( ValueInputOption.raw if raw is True else ValueInputOption.user_entered ) params: ParamsType = { "valueInputOption": value_input_option, "includeValuesInResponse": include_values_in_response, "responseValueRenderOption": response_value_render_option, "responseDateTimeRenderOption": response_date_time_render_option, } response = self.client.values_update( self.spreadsheet_id, full_range_name, params=params, body={"values": values, "majorDimension": major_dimension}, ) return response def batch_update( self, data: Iterable[MutableMapping[str, Any]], raw: bool = True, value_input_option: Optional[ValueInputOption] = None, include_values_in_response: Optional[bool] = None, response_value_render_option: Optional[ValueRenderOption] = None, response_date_time_render_option: Optional[DateTimeOption] = None, ) -> JSONResponse: """Sets values in one or more cell ranges of the sheet at once. :param list data: List of dictionaries in the form of `{'range': '...', 'values': [[.., ..], ...]}` where `range` is a target range to update in A1 notation or a named range, and `values` is a list of lists containing new values. :param str value_input_option: (optional) How the input data should be interpreted. Possible values are: * ``ValueInputOption.raw`` The values the user has entered will not be parsed and will be stored as-is. * ``ValueInputOption.user_entered`` The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param response_value_render_option: (optional) Determines how values should be rendered in the output. See `ValueRenderOption`_ in the Sheets API. Possible values are: ``ValueRenderOption.formatted`` (default) Values will be calculated and formatted according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. ``ValueRenderOption.unformatted`` Values will be calculated, but not formatted in the reply. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return the number 1.23. ``ValueRenderOption.formula`` Values will not be calculated. The reply will include the formulas. For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "=A1". .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption :type response_value_render_option: :class:`~gspread.utils.ValueRenderOption` :param str response_date_time_render_option: (optional) How dates, times, and durations should be represented in the output. Possible values are: ``DateTimeOption.serial_number`` (default) Instructs date, time, datetime, and duration fields to be output as doubles in "serial number" format, as popularized by Lotus 1-2-3. ``DateTimeOption.formatted_string`` Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale). .. note:: This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``. The default ``date_time_render_option`` is ``DateTimeOption.serial_number``. :type date_time_render_option: :class:`~gspread.utils.DateTimeOption` Examples:: worksheet.batch_update([{ 'range': 'A1:B1', 'values': [['42', '43']], }, { 'range': 'my_range', 'values': [['44', '45']], }]) # Note: named ranges are defined in the scope of # a spreadsheet, so even if `my_range` does not belong to # this sheet it is still updated .. versionadded:: 3.3 """ if not value_input_option: value_input_option = ( ValueInputOption.raw if raw is True else ValueInputOption.user_entered ) for values in data: values["range"] = absolute_range_name(self.title, values["range"]) body: MutableMapping[str, Any] = { "valueInputOption": value_input_option, "includeValuesInResponse": include_values_in_response, "responseValueRenderOption": response_value_render_option, "responseDateTimeRenderOption": response_date_time_render_option, "data": data, } response = self.client.values_batch_update(self.spreadsheet_id, body=body) return response def batch_format(self, formats: List[CellFormat]) -> JSONResponse: """Formats cells in batch. :param list formats: List of ranges to format and the new format to apply to each range. The list is composed of dict objects with the following keys/values: * range : A1 range notation * format : a valid dict object with the format to apply for that range see `CellFormat`_ in the Sheets API for available fields. .. _CellFormat: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#cellformat Examples:: # Format the range ``A1:C1`` with bold text # and format the range ``A2:C2`` a font size of 16 formats = [ { "range": "A1:C1", "format": { "textFormat": { "bold": True, }, }, }, { "range": "A2:C2", "format": { "textFormat": { "fontSize": 16, }, }, }, ] worksheet.batch_format(formats) .. versionadded:: 5.4 """ # No need to type more than that it's only internal to that method body: Dict[str, Any] = { "requests": [], } for format in formats: range_name = format["range"] cell_format = format["format"] grid_range = a1_range_to_grid_range(range_name, self.id) fields = "userEnteredFormat(%s)" % ",".join(cell_format.keys()) body["requests"].append( { "repeatCell": { "range": grid_range, "cell": {"userEnteredFormat": cell_format}, "fields": fields, } } ) return self.client.batch_update(self.spreadsheet_id, body) def format( self, ranges: Union[List[str], str], format: JSONResponse ) -> JSONResponse: """Format a list of ranges with the given format. :param str|list ranges: Target ranges in the A1 notation. :param dict format: Dictionary containing the fields to update. See `CellFormat`_ in the Sheets API for available fields. Examples:: # Set 'A4' cell's text format to bold worksheet.format("A4", {"textFormat": {"bold": True}}) # Set 'A1:D4' and 'A10:D10' cells's text format to bold worksheet.format(["A1:D4", "A10:D10"], {"textFormat": {"bold": True}}) # Color the background of 'A2:B2' cell range in black, # change horizontal alignment, text color and font size worksheet.format("A2:B2", { "backgroundColor": { "red": 0.0, "green": 0.0, "blue": 0.0 }, "horizontalAlignment": "CENTER", "textFormat": { "foregroundColor": { "red": 1.0, "green": 1.0, "blue": 1.0 }, "fontSize": 12, "bold": True } }) .. versionadded:: 3.3 """ if isinstance(ranges, list): range_list = ranges else: range_list = [ranges] formats = [CellFormat(range=range, format=format) for range in range_list] return self.batch_format(formats) def resize( self, rows: Optional[int] = None, cols: Optional[int] = None ) -> JSONResponse: """Resizes the worksheet. Specify one of ``rows`` or ``cols``. :param int rows: (optional) New number of rows. :param int cols: (optional) New number columns. """ grid_properties = {} if rows is not None: grid_properties["rowCount"] = rows if cols is not None: grid_properties["columnCount"] = cols if not grid_properties: raise TypeError("Either 'rows' or 'cols' should be specified.") fields = ",".join("gridProperties/%s" % p for p in grid_properties.keys()) body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "gridProperties": grid_properties, }, "fields": fields, } } ] } res = self.client.batch_update(self.spreadsheet_id, body) if rows is not None: self._properties["gridProperties"]["rowCount"] = rows if cols is not None: self._properties["gridProperties"]["columnCount"] = cols return res def sort( self, *specs: Tuple[int, Literal["asc", "des"]], range: Optional[str] = None ) -> JSONResponse: """Sorts worksheet using given sort orders. :param list specs: The sort order per column. Each sort order represented by a tuple where the first element is a column index and the second element is the order itself: 'asc' or 'des'. :param str range: The range to sort in A1 notation. By default sorts the whole sheet excluding frozen rows. Example:: # Sort sheet A -> Z by column 'B' wks.sort((2, 'asc')) # Sort range A2:G8 basing on column 'G' A -> Z # and column 'B' Z -> A wks.sort((7, 'asc'), (2, 'des'), range='A2:G8') .. versionadded:: 3.4 """ if range: start_a1, end_a1 = range.split(":") start_row, start_col = a1_to_rowcol(start_a1) end_row, end_col = a1_to_rowcol(end_a1) else: start_row = self._properties["gridProperties"].get("frozenRowCount", 0) + 1 start_col = 1 end_row = self.row_count end_col = self.col_count request_range = { "sheetId": self.id, "startRowIndex": start_row - 1, "endRowIndex": end_row, "startColumnIndex": start_col - 1, "endColumnIndex": end_col, } request_sort_specs = list() for col, order in specs: if order == "asc": request_order = "ASCENDING" elif order == "des": request_order = "DESCENDING" else: raise ValueError( "Either 'asc' or 'des' should be specified as sort order." ) request_sort_spec = { "dimensionIndex": col - 1, "sortOrder": request_order, } request_sort_specs.append(request_sort_spec) body = { "requests": [ { "sortRange": { "range": request_range, "sortSpecs": request_sort_specs, } } ] } response = self.client.batch_update(self.spreadsheet_id, body) return response def update_title(self, title: str) -> JSONResponse: """Renames the worksheet. :param str title: A new title. """ body = { "requests": [ { "updateSheetProperties": { "properties": {"sheetId": self.id, "title": title}, "fields": "title", } } ] } response = self.client.batch_update(self.spreadsheet_id, body) self._properties["title"] = title return response def update_tab_color(self, color: str) -> JSONResponse: """Changes the worksheet's tab color. Use clear_tab_color() to remove the color. :param str color: Hex color value. """ color_dict = convert_hex_to_colors_dict(color) body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "tabColorStyle": { "rgbColor": color_dict, }, }, "fields": "tabColorStyle", } } ] } response = self.client.batch_update(self.spreadsheet_id, body) self._properties["tabColorStyle"] = {"rgbColor": color_dict} return response def clear_tab_color(self) -> JSONResponse: """Clears the worksheet's tab color. Use update_tab_color() to set the color. """ body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "tabColorStyle": { "rgbColor": None, }, }, "fields": "tabColorStyle", }, }, ], } response = self.client.batch_update(self.spreadsheet_id, body) self._properties.pop("tabColorStyle") return response def update_index(self, index: int) -> JSONResponse: """Updates the ``index`` property for the worksheet. See the `Sheets API documentation `_ for information on how updating the index property affects the order of worksheets in a spreadsheet. To reorder all worksheets in a spreadsheet, see `Spreadsheet.reorder_worksheets`. .. versionadded:: 3.4 """ body = { "requests": [ { "updateSheetProperties": { "properties": {"sheetId": self.id, "index": index}, "fields": "index", } } ] } res = self.client.batch_update(self.spreadsheet_id, body) self._properties["index"] = index return res def _auto_resize( self, start_index: int, end_index: int, dimension: Dimension ) -> JSONResponse: """Updates the size of rows or columns in the worksheet. Index start from 0 :param start_index: The index (inclusive) to begin resizing :param end_index: The index (exclusive) to finish resizing :param dimension: Specifies whether to resize the row or column :type major_dimension: :class:`~gspread.utils.Dimension` .. versionadded:: 5.3.3 """ body = { "requests": [ { "autoResizeDimensions": { "dimensions": { "sheetId": self.id, "dimension": dimension, "startIndex": start_index, "endIndex": end_index, } } } ] } return self.client.batch_update(self.spreadsheet_id, body) def columns_auto_resize( self, start_column_index: int, end_column_index: int ) -> JSONResponse: """Updates the size of rows or columns in the worksheet. Index start from 0 :param start_column_index: The index (inclusive) to begin resizing :param end_column_index: The index (exclusive) to finish resizing .. versionadded:: 3.4 .. versionchanged:: 5.3.3 """ return self._auto_resize(start_column_index, end_column_index, Dimension.cols) def rows_auto_resize( self, start_row_index: int, end_row_index: int ) -> JSONResponse: """Updates the size of rows or columns in the worksheet. Index start from 0 :param start_row_index: The index (inclusive) to begin resizing :param end_row_index: The index (exclusive) to finish resizing .. versionadded:: 5.3.3 """ return self._auto_resize(start_row_index, end_row_index, Dimension.rows) def add_rows(self, rows: int) -> None: """Adds rows to worksheet. :param rows: Number of new rows to add. :type rows: int """ self.resize(rows=self.row_count + rows) def add_cols(self, cols: int) -> None: """Adds columns to worksheet. :param cols: Number of new columns to add. :type cols: int """ self.resize(cols=self.col_count + cols) def append_row( self, values: Sequence[Union[str, int, float]], value_input_option: ValueInputOption = ValueInputOption.raw, insert_data_option: Optional[InsertDataOption] = None, table_range: Optional[str] = None, include_values_in_response: bool = False, ) -> JSONResponse: """Adds a row to the worksheet and populates it with values. Widens the worksheet if there are more values than columns. :param list values: List of values for the new row. :param value_input_option: (optional) Determines how the input data should be interpreted. See `ValueInputOption`_ in the Sheets API reference. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param str insert_data_option: (optional) Determines how the input data should be inserted. See `InsertDataOption`_ in the Sheets API reference. :param str table_range: (optional) The A1 notation of a range to search for a logical table of data. Values are appended after the last row of the table. Examples: ``A1`` or ``B2:D4`` :param bool include_values_in_response: (optional) Determines if the update response should include the values of the cells that were appended. By default, responses do not include the updated values. .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption .. _InsertDataOption: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#InsertDataOption """ return self.append_rows( [values], value_input_option=value_input_option, insert_data_option=insert_data_option, table_range=table_range, include_values_in_response=include_values_in_response, ) def append_rows( self, values: Sequence[Sequence[Union[str, int, float]]], value_input_option: ValueInputOption = ValueInputOption.raw, insert_data_option: Optional[InsertDataOption] = None, table_range: Optional[str] = None, include_values_in_response: Optional[bool] = None, ) -> JSONResponse: """Adds multiple rows to the worksheet and populates them with values. Widens the worksheet if there are more values than columns. :param list values: List of rows each row is List of values for the new row. :param value_input_option: (optional) Determines how input data should be interpreted. Possible values are ``ValueInputOption.raw`` or ``ValueInputOption.user_entered``. See `ValueInputOption`_ in the Sheets API. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param str insert_data_option: (optional) Determines how the input data should be inserted. See `InsertDataOption`_ in the Sheets API reference. :param str table_range: (optional) The A1 notation of a range to search for a logical table of data. Values are appended after the last row of the table. Examples: ``A1`` or ``B2:D4`` :param bool include_values_in_response: (optional) Determines if the update response should include the values of the cells that were appended. By default, responses do not include the updated values. .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption .. _InsertDataOption: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#InsertDataOption """ range_label = absolute_range_name(self.title, table_range) params: ParamsType = { "valueInputOption": value_input_option, "insertDataOption": insert_data_option, "includeValuesInResponse": include_values_in_response, } body = {"values": values} res = self.client.values_append(self.spreadsheet_id, range_label, params, body) num_new_rows = len(values) self._properties["gridProperties"]["rowCount"] += num_new_rows return res def insert_row( self, values: Sequence[Union[str, int, float]], index: int = 1, value_input_option: ValueInputOption = ValueInputOption.raw, inherit_from_before: bool = False, ) -> JSONResponse: """Adds a row to the worksheet at the specified index and populates it with values. Widens the worksheet if there are more values than columns. :param list values: List of values for the new row. :param int index: (optional) Offset for the newly inserted row. :param str value_input_option: (optional) Determines how input data should be interpreted. Possible values are ``ValueInputOption.raw`` or ``ValueInputOption.user_entered``. See `ValueInputOption`_ in the Sheets API. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param bool inherit_from_before: (optional) If True, the new row will inherit its properties from the previous row. Defaults to False, meaning that the new row acquires the properties of the row immediately after it. .. warning:: `inherit_from_before` must be False when adding a row to the top of a spreadsheet (`index=1`), and must be True when adding to the bottom of the spreadsheet. .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption """ return self.insert_rows( [values], index, value_input_option=value_input_option, inherit_from_before=inherit_from_before, ) def insert_rows( self, values: Sequence[Sequence[Union[str, int, float]]], row: int = 1, value_input_option: ValueInputOption = ValueInputOption.raw, inherit_from_before: bool = False, ) -> JSONResponse: """Adds multiple rows to the worksheet at the specified index and populates them with values. :param list values: List of row lists. a list of lists, with the lists each containing one row's values. Widens the worksheet if there are more values than columns. :param int row: Start row to update (one-based). Defaults to 1 (one). :param str value_input_option: (optional) Determines how input data should be interpreted. Possible values are ``ValueInputOption.raw`` or ``ValueInputOption.user_entered``. See `ValueInputOption`_ in the Sheets API. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param bool inherit_from_before: (optional) If true, new rows will inherit their properties from the previous row. Defaults to False, meaning that new rows acquire the properties of the row immediately after them. .. warning:: `inherit_from_before` must be False when adding rows to the top of a spreadsheet (`row=1`), and must be True when adding to the bottom of the spreadsheet. """ # can't insert row on sheet with colon ':' # in its name, see issue: https://issuetracker.google.com/issues/36761154 if ":" in self.title: raise GSpreadException( "can't insert row in worksheet with colon ':' in its name. See issue: https://issuetracker.google.com/issues/36761154" ) if inherit_from_before and row == 1: raise GSpreadException( "inherit_from_before cannot be used when inserting row(s) at the top of a spreadsheet" ) insert_dimension_body = { "requests": [ { "insertDimension": { "range": { "sheetId": self.id, "dimension": Dimension.rows, "startIndex": row - 1, "endIndex": len(values) + row - 1, }, "inheritFromBefore": inherit_from_before, } } ] } self.client.batch_update(self.spreadsheet_id, insert_dimension_body) range_label = absolute_range_name(self.title, "A%s" % row) params: ParamsType = {"valueInputOption": value_input_option} body = {"majorDimension": Dimension.rows, "values": values} res = self.client.values_append(self.spreadsheet_id, range_label, params, body) num_new_rows = len(values) self._properties["gridProperties"]["rowCount"] += num_new_rows return res def insert_cols( self, values: Sequence[Sequence[Union[str, int, float]]], col: int = 1, value_input_option: ValueInputOption = ValueInputOption.raw, inherit_from_before: bool = False, ) -> JSONResponse: """Adds multiple new cols to the worksheet at specified index and populates them with values. :param list values: List of col lists. a list of lists, with the lists each containing one col's values. Increases the number of rows if there are more values than columns. :param int col: Start col to update (one-based). Defaults to 1 (one). :param str value_input_option: (optional) Determines how input data should be interpreted. Possible values are ``ValueInputOption.raw`` or ``ValueInputOption.user_entered``. See `ValueInputOption`_ in the Sheets API. :type value_input_option: :class:`~gspread.utils.ValueInputOption` :param bool inherit_from_before: (optional) If True, new columns will inherit their properties from the previous column. Defaults to False, meaning that new columns acquire the properties of the column immediately after them. .. warning:: `inherit_from_before` must be False if adding at the left edge of a spreadsheet (`col=1`), and must be True if adding at the right edge of the spreadsheet. """ if inherit_from_before and col == 1: raise GSpreadException( "inherit_from_before cannot be used when inserting column(s) at the left edge of a spreadsheet" ) insert_dimension_body = { "requests": [ { "insertDimension": { "range": { "sheetId": self.id, "dimension": Dimension.cols, "startIndex": col - 1, "endIndex": len(values) + col - 1, }, "inheritFromBefore": inherit_from_before, } } ] } self.client.batch_update(self.spreadsheet_id, insert_dimension_body) range_label = absolute_range_name(self.title, rowcol_to_a1(1, col)) params: ParamsType = {"valueInputOption": value_input_option} body = {"majorDimension": Dimension.cols, "values": values} res = self.client.values_append(self.spreadsheet_id, range_label, params, body) num_new_cols = len(values) self._properties["gridProperties"]["columnCount"] += num_new_cols return res @cast_to_a1_notation def add_protected_range( self, name: str, editor_users_emails: Sequence[str] = [], editor_groups_emails: Sequence[str] = [], description: Optional[str] = None, warning_only: bool = False, requesting_user_can_edit: bool = False, ) -> JSONResponse: """Add protected range to the sheet. Only the editors can edit the protected range. Google API will automatically add the owner of this SpreadSheet. The list ``editor_users_emails`` must at least contain the e-mail address used to open that SpreadSheet. ``editor_users_emails`` must only contain e-mail addresses who already have a write access to the spreadsheet. :param str name: A string with range value in A1 notation, e.g. 'A1:A5'. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number For both A1 and numeric notation: :param list editor_users_emails: The email addresses of users with edit access to the protected range. This must include your e-mail address at least. :param list editor_groups_emails: (optional) The email addresses of groups with edit access to the protected range. :param str description: (optional) Description for the protected ranges. :param boolean warning_only: (optional) When true this protected range will show a warning when editing. Defaults to ``False``. :param boolean requesting_user_can_edit: (optional) True if the user who requested this protected range can edit the protected cells. Defaults to ``False``. """ grid_range = a1_range_to_grid_range(name, self.id) body = { "requests": [ { "addProtectedRange": { "protectedRange": { "range": grid_range, "description": description, "warningOnly": warning_only, "requestingUserCanEdit": requesting_user_can_edit, "editors": ( None if warning_only else { "users": editor_users_emails, "groups": editor_groups_emails, } ), } } } ] } return self.client.batch_update(self.spreadsheet_id, body) def delete_protected_range(self, id: str) -> JSONResponse: """Delete protected range identified by the ID ``id``. To retrieve the ID of a protected range use the following method to list them all: :func:`~gspread.Spreadsheet.list_protected_ranges` """ body = { "requests": [ { "deleteProtectedRange": { "protectedRangeId": id, } } ] } return self.client.batch_update(self.spreadsheet_id, body) def delete_dimension( self, dimension: Dimension, start_index: int, end_index: Optional[int] = None ) -> JSONResponse: """Deletes multi rows from the worksheet at the specified index. :param dimension: A dimension to delete. ``Dimension.rows`` or ``Dimension.cols``. :type dimension: :class:`~gspread.utils.Dimension` :param int start_index: Index of a first row for deletion. :param int end_index: Index of a last row for deletion. When ``end_index`` is not specified this method only deletes a single row at ``start_index``. """ if end_index is None: end_index = start_index body = { "requests": [ { "deleteDimension": { "range": { "sheetId": self.id, "dimension": dimension, "startIndex": start_index - 1, "endIndex": end_index, } } } ] } res = self.client.batch_update(self.spreadsheet_id, body) if end_index is None: end_index = start_index num_deleted = end_index - start_index + 1 if dimension == Dimension.rows: self._properties["gridProperties"]["rowCount"] -= num_deleted elif dimension == Dimension.cols: self._properties["gridProperties"]["columnCount"] -= num_deleted return res def delete_rows( self, start_index: int, end_index: Optional[int] = None ) -> JSONResponse: """Deletes multiple rows from the worksheet at the specified index. :param int start_index: Index of a first row for deletion. :param int end_index: Index of a last row for deletion. When end_index is not specified this method only deletes a single row at ``start_index``. Example:: # Delete rows 5 to 10 (inclusive) worksheet.delete_rows(5, 10) # Delete only the second row worksheet.delete_rows(2) """ return self.delete_dimension(Dimension.rows, start_index, end_index) def delete_columns( self, start_index: int, end_index: Optional[int] = None ) -> JSONResponse: """Deletes multiple columns from the worksheet at the specified index. :param int start_index: Index of a first column for deletion. :param int end_index: Index of a last column for deletion. When end_index is not specified this method only deletes a single column at ``start_index``. """ return self.delete_dimension(Dimension.cols, start_index, end_index) def clear(self) -> JSONResponse: """Clears all cells in the worksheet.""" return self.client.values_clear( self.spreadsheet_id, absolute_range_name(self.title) ) def batch_clear(self, ranges: Sequence[str]) -> JSONResponse: """Clears multiple ranges of cells with 1 API call. `Batch Clear`_ .. _Batch Clear: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear Examples:: worksheet.batch_clear(['A1:B1','my_range']) # Note: named ranges are defined in the scope of # a spreadsheet, so even if `my_range` does not belong to # this sheet it is still updated .. versionadded:: 3.8.0 """ ranges = [absolute_range_name(self.title, rng) for rng in ranges] body = {"ranges": ranges} response = self.client.values_batch_clear(self.spreadsheet_id, body=body) return response def _finder( self, func: Callable[[Callable[[Cell], bool], Iterable[Cell]], Iterator[Cell]], query: Union[str, re.Pattern], case_sensitive: bool, in_row: Optional[int] = None, in_column: Optional[int] = None, ) -> Iterator[Cell]: data = self.client.values_get( self.spreadsheet_id, absolute_range_name(self.title) ) try: values = fill_gaps(data["values"]) except KeyError: values = [] cells = self._list_cells(values, in_row, in_column) if isinstance(query, str): str_query = query def match(x: Cell) -> bool: if case_sensitive or x.value is None: return x.value == str_query else: return x.value.casefold() == str_query.casefold() elif isinstance(query, re.Pattern): re_query = query def match(x: Cell) -> bool: return re_query.search(x.value) is not None else: raise TypeError( "query must be of type: 'str' or 're.Pattern' (obtained from re.compile())" ) return func(match, cells) def _list_cells( self, values: Sequence[Sequence[Union[str, int, float]]], in_row: Optional[int] = None, in_column: Optional[int] = None, ) -> List[Cell]: """Returns a list of ``Cell`` instances scoped by optional ``in_row``` or ``in_column`` values (both one-based). """ if in_row is not None and in_column is not None: raise TypeError("Either 'in_row' or 'in_column' should be specified.") if in_column is not None: return [ Cell(row=i + 1, col=in_column, value=str(row[in_column - 1])) for i, row in enumerate(values) ] elif in_row is not None: return [ Cell(row=in_row, col=j + 1, value=str(value)) for j, value in enumerate(values[in_row - 1]) ] else: return [ Cell(row=i + 1, col=j + 1, value=str(value)) for i, row in enumerate(values) for j, value in enumerate(row) ] def find( self, query: Union[str, re.Pattern], in_row: Optional[int] = None, in_column: Optional[int] = None, case_sensitive: bool = True, ) -> Optional[Cell]: """Finds the first cell matching the query. :param query: A literal string to match or compiled regular expression. :type query: str, :py:class:`re.RegexObject` :param int in_row: (optional) One-based row number to scope the search. :param int in_column: (optional) One-based column number to scope the search. :param bool case_sensitive: (optional) comparison is case sensitive if set to True, case insensitive otherwise. Default is True. Does not apply to regular expressions. :returns: the first matching cell or None otherwise :rtype: :class:`gspread.cell.Cell` """ try: return next(self._finder(filter, query, case_sensitive, in_row, in_column)) except StopIteration: return None def findall( self, query: Union[str, re.Pattern], in_row: Optional[int] = None, in_column: Optional[int] = None, case_sensitive: bool = True, ) -> List[Cell]: """Finds all cells matching the query. Returns a list of :class:`gspread.cell.Cell`. :param query: A literal string to match or compiled regular expression. :type query: str, :py:class:`re.RegexObject` :param int in_row: (optional) One-based row number to scope the search. :param int in_column: (optional) One-based column number to scope the search. :param bool case_sensitive: (optional) comparison is case sensitive if set to True, case insensitive otherwise. Default is True. Does not apply to regular expressions. :returns: the list of all matching cells or empty list otherwise :rtype: list """ return [ elem for elem in self._finder(filter, query, case_sensitive, in_row, in_column) ] def freeze( self, rows: Optional[int] = None, cols: Optional[int] = None ) -> JSONResponse: """Freeze rows and/or columns on the worksheet. :param rows: Number of rows to freeze. :param cols: Number of columns to freeze. """ grid_properties = {} if rows is not None: grid_properties["frozenRowCount"] = rows if cols is not None: grid_properties["frozenColumnCount"] = cols if not grid_properties: raise TypeError("Either 'rows' or 'cols' should be specified.") fields = ",".join("gridProperties/%s" % p for p in grid_properties.keys()) body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "gridProperties": grid_properties, }, "fields": fields, } } ] } res = self.client.batch_update(self.spreadsheet_id, body) if rows is not None: self._properties["gridProperties"]["frozenRowCount"] = rows if cols is not None: self._properties["gridProperties"]["frozenColumnCount"] = cols return res @cast_to_a1_notation def set_basic_filter(self, name: Optional[str] = None) -> Any: """Add a basic filter to the worksheet. If a range or boundaries are passed, the filter will be limited to the given range. :param str name: A string with range value in A1 notation, e.g. ``A1:A5``. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number .. versionadded:: 3.4 """ grid_range = ( a1_range_to_grid_range(name, self.id) if name is not None else {"sheetId": self.id} ) body = {"requests": [{"setBasicFilter": {"filter": {"range": grid_range}}}]} return self.client.batch_update(self.spreadsheet_id, body) def clear_basic_filter(self) -> JSONResponse: """Remove the basic filter from a worksheet. .. versionadded:: 3.4 """ body = { "requests": [ { "clearBasicFilter": { "sheetId": self.id, } } ] } return self.client.batch_update(self.spreadsheet_id, body) @classmethod def _duplicate( cls, client: HTTPClient, spreadsheet_id: str, sheet_id: int, spreadsheet: Any, insert_sheet_index: Optional[int] = None, new_sheet_id: Optional[int] = None, new_sheet_name: Optional[str] = None, ) -> "Worksheet": """Class method to duplicate a :class:`gspread.worksheet.Worksheet`. :param Session client: The HTTP client used for the HTTP request :param str spreadsheet_id: The spreadsheet ID (used for the HTTP request) :param int sheet_id: The original sheet ID :param int insert_sheet_index: (optional) The zero-based index where the new sheet should be inserted. The index of all sheets after this are incremented. :param int new_sheet_id: (optional) The ID of the new sheet. If not set, an ID is chosen. If set, the ID must not conflict with any existing sheet ID. If set, it must be non-negative. :param str new_sheet_name: (optional) The name of the new sheet. If empty, a new name is chosen for you. :returns: a newly created :class:`gspread.worksheet.Worksheet`. .. note:: This is a class method in order for the spreadsheet class to use it without an instance of a Worksheet object """ body = { "requests": [ { "duplicateSheet": { "sourceSheetId": sheet_id, "insertSheetIndex": insert_sheet_index, "newSheetId": new_sheet_id, "newSheetName": new_sheet_name, } } ] } data = client.batch_update(spreadsheet_id, body) properties = data["replies"][0]["duplicateSheet"]["properties"] return Worksheet(spreadsheet, properties, spreadsheet_id, client) def duplicate( self, insert_sheet_index: Optional[int] = None, new_sheet_id: Optional[int] = None, new_sheet_name: Optional[str] = None, ) -> "Worksheet": """Duplicate the sheet. :param int insert_sheet_index: (optional) The zero-based index where the new sheet should be inserted. The index of all sheets after this are incremented. :param int new_sheet_id: (optional) The ID of the new sheet. If not set, an ID is chosen. If set, the ID must not conflict with any existing sheet ID. If set, it must be non-negative. :param str new_sheet_name: (optional) The name of the new sheet. If empty, a new name is chosen for you. :returns: a newly created :class:`gspread.worksheet.Worksheet`. .. versionadded:: 3.1 """ return Worksheet._duplicate( self.client, self.spreadsheet_id, self.id, self.spreadsheet, insert_sheet_index=insert_sheet_index, new_sheet_id=new_sheet_id, new_sheet_name=new_sheet_name, ) def copy_to( self, destination_spreadsheet_id: str, ) -> JSONResponse: """Copies this sheet to another spreadsheet. :param str spreadsheet_id: The ID of the spreadsheet to copy the sheet to. :returns: a dict with the response containing information about the newly created sheet. :rtype: dict """ return self.client.spreadsheets_sheets_copy_to( self.spreadsheet_id, self.id, destination_spreadsheet_id ) @cast_to_a1_notation def merge_cells(self, name: str, merge_type: str = MergeType.merge_all) -> Any: """Merge cells. :param str name: Range name in A1 notation, e.g. 'A1:A5'. :param merge_type: (optional) one of ``MergeType.merge_all``, ``MergeType.merge_columns``, or ``MergeType.merge_rows``. Defaults to ``MergeType.merge_all``. See `MergeType`_ in the Sheets API reference. :type merge_type: :namedtuple:`~gspread.utils.MergeType` Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number :returns: the response body from the request :rtype: dict .. _MergeType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#MergeType """ grid_range = a1_range_to_grid_range(name, self.id) body = { "requests": [{"mergeCells": {"mergeType": merge_type, "range": grid_range}}] } return self.client.batch_update(self.spreadsheet_id, body) @cast_to_a1_notation def unmerge_cells(self, name: str) -> JSONResponse: """Unmerge cells. Unmerge previously merged cells. :param str name: Range name in A1 notation, e.g. 'A1:A5'. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number :returns: the response body from the request :rtype: dict """ grid_range = a1_range_to_grid_range(name, self.id) body = { "requests": [ { "unmergeCells": { "range": grid_range, }, }, ] } return self.client.batch_update(self.spreadsheet_id, body) def batch_merge( self, merges: List[Dict[Literal["range", "mergeType"], Union[str, MergeType]]], merge_type: MergeType = MergeType.merge_all, ) -> Any: """Merge multiple ranges at the same time. :param merges: list of dictionaries with the ranges(is A1-notation), and an optional ``MergeType`` field. See `MergeType`_ in the Sheets API reference. :type merges: List[Dict[Literal["range", "mergeType"], Union[str, MergeType]]] :params merge_type: (optional) default ``MergeType`` for all merges missing the merges. defaults to ``MergeType.merge_all``. :type merge_type: ``MergeType`` example:: worksheet.batch_merge( [ {"range": "A1:M1"}, {"range": "D2:H2", "mergeType": utils.MergeType.merge_rows} ] ) :returns: The body of the request response. :rtype: dict """ requests = [ { "mergeCells": { "range": a1_range_to_grid_range(merge["range"], self.id), "mergeType": merge.get("mergeType", merge_type), } } for merge in merges ] return self.client.batch_update(self.spreadsheet_id, {"requests": requests}) def get_notes( self, default_empty_value: Optional[str] = "", grid_range: Optional[str] = None, ) -> List[List[str]]: """Returns a list of lists containing all notes in the sheet or range. .. note:: The resulting matrix is not necessarily square. The matrix is as tall as the last row with a note, and each row is only as long as the last column in that row with a note. Please see the example below. To ensure it is square, use `gspread.utils.fill_gaps`, for example like `utils.fill_gaps(arr, len(arr), max(len(a) for a in arr), None)` :param str default_empty_value: (optional) Determines which value to use for cells without notes, defaults to None. :param str grid_range: (optional) Range name in A1 notation, e.g. 'A1:A5'. Examples:: # Note data: # A B # 1 A1 - # 2 - B2 # Read all notes from the sheet >>> worksheet.get_notes() [ ["A1"], ["", "B2"] ] >>> arr = worksheet.get_notes() >>> gspread.utils.fill_gaps(arr, len(arr), max(len(a) for a in arr), None) [ ["A1", ""], ["", "B2"] ] # Read notes from a specific range >>> worksheet.get_notes(grid_range="A2:B2") [ ["", "B2"] ] """ params: ParamsType = { "fields": "sheets.data.rowData.values.note", "ranges": absolute_range_name(self.title, grid_range), } res = self.client.spreadsheets_get(self.spreadsheet_id, params) # access 0th sheet because we specified a sheet with params["ranges"] above data = res["sheets"][0]["data"][0].get("rowData", [{}]) notes: List[List[str]] = [] for row in data: notes.append([]) for cell in row.get("values", []): notes[-1].append(cell.get("note", default_empty_value)) return notes def get_note(self, cell: str) -> str: """Get the content of the note located at `cell`, or the empty string if the cell does not have a note. :param str cell: A string with cell coordinates in A1 notation, e.g. 'D7'. """ absolute_cell = absolute_range_name(self.title, cell) params: ParamsType = { "ranges": absolute_cell, "fields": "sheets/data/rowData/values/note", } res = self.client.spreadsheets_get(self.spreadsheet_id, params) try: note = res["sheets"][0]["data"][0]["rowData"][0]["values"][0]["note"] except (IndexError, KeyError): note = "" return note def update_notes(self, notes: Mapping[str, str]) -> None: """update multiple notes. The notes are attached to a certain cell. :param notes dict: A dict of notes with their cells coordinates and respective content dict format is: * key: the cell coordinates as A1 range format * value: the string content of the cell Example:: { "D7": "Please read my notes", "GH42": "this one is too far", } .. versionadded:: 5.9 """ # No need to type lower than the sequence, it's internal only body: MutableMapping[str, List[Any]] = {"requests": []} for range, content in notes.items(): if not isinstance(content, str): raise TypeError( "Only string allowed as content for a note: '{} - {}'".format( range, content ) ) req = { "updateCells": { "range": a1_range_to_grid_range(range, self.id), "fields": "note", "rows": [ { "values": [ { "note": content, }, ], }, ], }, } body["requests"].append(req) self.client.batch_update(self.spreadsheet_id, body) @cast_to_a1_notation def update_note(self, cell: str, content: str) -> None: """Update the content of the note located at `cell`. :param str cell: A string with cell coordinates in A1 notation, e.g. 'D7'. :param str note: The text note to insert. .. versionadded:: 3.7 """ self.update_notes({cell: content}) @cast_to_a1_notation def insert_note(self, cell: str, content: str) -> None: """Insert a note. The note is attached to a certain cell. :param str cell: A string with cell coordinates in A1 notation, e.g. 'D7'. :param str content: The text note to insert. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number .. versionadded:: 3.7 """ self.update_notes({cell: content}) def insert_notes(self, notes: Mapping[str, str]) -> None: """insert multiple notes. The notes are attached to a certain cell. :param notes dict: A dict of notes with their cells coordinates and respective content dict format is: * key: the cell coordinates as A1 range format * value: the string content of the cell Example:: { "D7": "Please read my notes", "GH42": "this one is too far", } .. versionadded:: 5.9 """ self.update_notes(notes) def clear_notes(self, ranges: Iterable[str]) -> None: """Clear all notes located at the at the coordinates pointed to by ``ranges``. :param ranges list: List of A1 coordinates where to clear the notes. e.g. ``["A1", "GH42", "D7"]`` """ notes = {range: "" for range in ranges} self.update_notes(notes) @cast_to_a1_notation def clear_note(self, cell: str) -> None: """Clear a note. The note is attached to a certain cell. :param str cell: A string with cell coordinates in A1 notation, e.g. 'D7'. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number .. versionadded:: 3.7 """ # set the note to will clear it self.update_notes({cell: ""}) @cast_to_a1_notation def define_named_range(self, name: str, range_name: str) -> JSONResponse: """ :param str name: A string with range value in A1 notation, e.g. 'A1:A5'. Alternatively, you may specify numeric boundaries. All values index from 1 (one): :param int first_row: First row number :param int first_col: First column number :param int last_row: Last row number :param int last_col: Last column number :param range_name: The name to assign to the range of cells :returns: the response body from the request :rtype: dict """ body = { "requests": [ { "addNamedRange": { "namedRange": { "name": range_name, "range": a1_range_to_grid_range(name, self.id), } } } ] } return self.client.batch_update(self.spreadsheet_id, body) def delete_named_range(self, named_range_id: str) -> JSONResponse: """ :param str named_range_id: The ID of the named range to delete. Can be obtained with Spreadsheet.list_named_ranges() :returns: the response body from the request :rtype: dict """ body = { "requests": [ { "deleteNamedRange": { "namedRangeId": named_range_id, } } ] } return self.client.batch_update(self.spreadsheet_id, body) def _add_dimension_group( self, start: int, end: int, dimension: Dimension ) -> JSONResponse: """ update this sheet by grouping 'dimension' :param int start: The start (inclusive) of the group :param int end: The end (exclusive) of the grou :param str dimension: The dimension to group, can be one of ``ROWS`` or ``COLUMNS``. :type diension: :class:`~gspread.utils.Dimension` """ body = { "requests": [ { "addDimensionGroup": { "range": { "sheetId": self.id, "dimension": dimension, "startIndex": start, "endIndex": end, }, } } ] } return self.client.batch_update(self.spreadsheet_id, body) def add_dimension_group_columns(self, start: int, end: int) -> JSONResponse: """ Group columns in order to hide them in the UI. .. note:: API behavior with nested groups and non-matching ``[start:end)`` range can be found here: `Add Dimension Group Request`_ .. _Add Dimension Group Request: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#AddDimensionGroupRequest :param int start: The start (inclusive) of the group :param int end: The end (exclusive) of the group """ return self._add_dimension_group(start, end, Dimension.cols) def add_dimension_group_rows(self, start: int, end: int) -> JSONResponse: """ Group rows in order to hide them in the UI. .. note:: API behavior with nested groups and non-matching ``[start:end)`` range can be found here `Add Dimension Group Request`_ :param int start: The start (inclusive) of the group :param int end: The end (exclusive) of the group """ return self._add_dimension_group(start, end, Dimension.rows) def _delete_dimension_group( self, start: int, end: int, dimension: Dimension ) -> JSONResponse: """delete a dimension group in this sheet""" body = { "requests": [ { "deleteDimensionGroup": { "range": { "sheetId": self.id, "dimension": dimension, "startIndex": start, "endIndex": end, } } } ] } return self.client.batch_update(self.spreadsheet_id, body) def delete_dimension_group_columns(self, start: int, end: int) -> JSONResponse: """ Remove the grouping of a set of columns. .. note:: API behavior with nested groups and non-matching ``[start:end)`` range can be found here `Delete Dimension Group Request`_ .. _Delete Dimension Group Request: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#DeleteDimensionGroupRequest :param int start: The start (inclusive) of the group :param int end: The end (exclusive) of the group """ return self._delete_dimension_group(start, end, Dimension.cols) def delete_dimension_group_rows(self, start: int, end: int) -> JSONResponse: """ Remove the grouping of a set of rows. .. note:: API behavior with nested groups and non-matching ``[start:end)`` range can be found here `Delete Dimension Group Request`_ :param int start: The start (inclusive) of the group :param int end: The end (exclusive) of the group """ return self._delete_dimension_group(start, end, Dimension.rows) def list_dimension_group_columns(self) -> List[JSONResponse]: """ List all the grouped columns in this worksheet. :returns: list of the grouped columns :rtype: list """ return self._get_sheet_property("columnGroups", []) def list_dimension_group_rows(self) -> List[JSONResponse]: """ List all the grouped rows in this worksheet. :returns: list of the grouped rows :rtype: list """ return self._get_sheet_property("rowGroups", []) def _hide_dimension( self, start: int, end: int, dimension: Dimension ) -> JSONResponse: """ Update this sheet by hiding the given 'dimension' Index starts from 0. :param int start: The (inclusive) start of the dimension to hide :param int end: The (exclusive) end of the dimension to hide :param str dimension: The dimension to hide, can be one of ``ROWS`` or ``COLUMNS``. :type diension: :class:`~gspread.utils.Dimension` """ body = { "requests": [ { "updateDimensionProperties": { "range": { "sheetId": self.id, "dimension": dimension, "startIndex": start, "endIndex": end, }, "properties": { "hiddenByUser": True, }, "fields": "hiddenByUser", } } ] } return self.client.batch_update(self.spreadsheet_id, body) def hide_columns(self, start: int, end: int) -> JSONResponse: """ Explicitly hide the given column index range. Index starts from 0. :param int start: The (inclusive) starting column to hide :param int end: The (exclusive) end column to hide """ return self._hide_dimension(start, end, Dimension.cols) def hide_rows(self, start: int, end: int) -> JSONResponse: """ Explicitly hide the given row index range. Index starts from 0. :param int start: The (inclusive) starting row to hide :param int end: The (exclusive) end row to hide """ return self._hide_dimension(start, end, Dimension.rows) def _unhide_dimension( self, start: int, end: int, dimension: Dimension ) -> JSONResponse: """ Update this sheet by unhiding the given 'dimension' Index starts from 0. :param int start: The (inclusive) start of the dimension to unhide :param int end: The (inclusive) end of the dimension to unhide :param str dimension: The dimension to hide, can be one of ``ROWS`` or ``COLUMNS``. :type dimension: :class:`~gspread.utils.Dimension` """ body = { "requests": [ { "updateDimensionProperties": { "range": { "sheetId": self.id, "dimension": dimension, "startIndex": start, "endIndex": end, }, "properties": { "hiddenByUser": False, }, "fields": "hiddenByUser", } } ] } return self.client.batch_update(self.spreadsheet_id, body) def unhide_columns(self, start: int, end: int) -> JSONResponse: """ Explicitly unhide the given column index range. Index start from 0. :param int start: The (inclusive) starting column to hide :param int end: The (exclusive) end column to hide """ return self._unhide_dimension(start, end, Dimension.cols) def unhide_rows(self, start: int, end: int) -> JSONResponse: """ Explicitly unhide the given row index range. Index start from 0. :param int start: The (inclusive) starting row to hide :param int end: The (exclusive) end row to hide """ return self._unhide_dimension(start, end, Dimension.rows) def _set_hidden_flag(self, hidden: bool) -> JSONResponse: """Send the appropriate request to hide/show the current worksheet""" body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "hidden": hidden, }, "fields": "hidden", } } ] } res = self.client.batch_update(self.spreadsheet_id, body) self._properties["hidden"] = hidden return res def hide(self) -> JSONResponse: """Hides the current worksheet from the UI.""" return self._set_hidden_flag(True) def show(self) -> JSONResponse: """Show the current worksheet in the UI.""" return self._set_hidden_flag(False) def _set_gridlines_hidden_flag(self, hidden: bool) -> JSONResponse: """Hide/show gridlines on the current worksheet""" body = { "requests": [ { "updateSheetProperties": { "properties": { "sheetId": self.id, "gridProperties": { "hideGridlines": hidden, }, }, "fields": "gridProperties.hideGridlines", } } ] } res = self.client.batch_update(self.spreadsheet_id, body) self._properties["gridProperties"]["hideGridlines"] = hidden return res def hide_gridlines(self) -> JSONResponse: """Hide gridlines on the current worksheet""" return self._set_gridlines_hidden_flag(True) def show_gridlines(self) -> JSONResponse: """Show gridlines on the current worksheet""" return self._set_gridlines_hidden_flag(False) def copy_range( self, source: str, dest: str, paste_type: PasteType = PasteType.normal, paste_orientation: PasteOrientation = PasteOrientation.normal, ) -> JSONResponse: """Copies a range of data from source to dest .. note:: ``paste_type`` values are explained here: `Paste Types`_ .. _Paste Types: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#pastetype :param str source: The A1 notation of the source range to copy :param str dest: The A1 notation of the destination where to paste the data Can be the A1 notation of the top left corner where the range must be paste ex: G16, or a complete range notation ex: G16:I20. The dimensions of the destination range is not checked and has no effect, if the destination range does not match the source range dimension, the entire source range is copies anyway. :param paste_type: the paste type to apply. Many paste type are available from the Sheet API, see above note for detailed values for all values and their effects. Defaults to ``PasteType.normal`` :type paste_type: :class:`~gspread.utils.PasteType` :param paste_orientation: The paste orient to apply. Possible values are: ``normal`` to keep the same orientation, ``transpose`` where all rows become columns and vice versa. :type paste_orientation: :class:`~gspread.utils.PasteOrientation` """ body = { "requests": [ { "copyPaste": { "source": a1_range_to_grid_range(source, self.id), "destination": a1_range_to_grid_range(dest, self.id), "pasteType": paste_type, "pasteOrientation": paste_orientation, } } ] } return self.client.batch_update(self.spreadsheet_id, body) def cut_range( self, source: str, dest: str, paste_type: PasteType = PasteType.normal, ) -> JSONResponse: """Moves a range of data form source to dest .. note:: ``paste_type`` values are explained here: `Paste Types`_ .. _Paste Types: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#pastetype :param str source: The A1 notation of the source range to move :param str dest: The A1 notation of the destination where to paste the data **it must be a single cell** in the A1 notation. ex: G16 :param paste_type: the paste type to apply. Many paste type are available from the Sheet API, see above note for detailed values for all values and their effects. Defaults to ``PasteType.normal`` :type paste_type: :class:`~gspread.utils.PasteType` """ # in the cut/paste request, the destination object # is a `gridCoordinate` and not a `gridRang` # it has different object keys grid_dest = a1_range_to_grid_range(dest, self.id) body = { "requests": [ { "cutPaste": { "source": a1_range_to_grid_range(source, self.id), "destination": { "sheetId": grid_dest["sheetId"], "rowIndex": grid_dest["startRowIndex"], "columnIndex": grid_dest["startColumnIndex"], }, "pasteType": paste_type, } } ] } return self.client.batch_update(self.spreadsheet_id, body) def add_validation( self, range: str, condition_type: ValidationConditionType, values: Iterable[Any], inputMessage: Optional[str] = None, strict: bool = False, showCustomUi: bool = False, ) -> Any: """Adds a data validation rule to any given range. .. note:: ``condition_type`` values are explained here: `ConditionType`_ .. _ConditionType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#ConditionType :param str source: The A1 notation of the source range to move :param condition_type: The sort of condition to apply. :param values: List of condition values. :type values: Any :param str inputMessage: Message to show for the validation. :param bool strict: Whether to reject invalid data or not. :param bool showCustomUi: Whether to show a custom UI(Dropdown) for list values. **Examples** .. code-block:: python import gspread from gspread.utils import ValidationConditionType ... ws = spreadsheet.sheet1 ws.add_validation( 'A1', ValidationConditionType.number_greater, [10], strict=True, inputMessage='Value must be greater than 10', ) ws.add_validation( 'C2:C7', ValidationConditionType.one_of_list, ['Yes','No'], showCustomUi=True ) """ if not isinstance(condition_type, ValidationConditionType): raise TypeError( "condition_type param should be a valid ValidationConditionType." ) grid = a1_range_to_grid_range(range, self.id) body = { "requests": [ { "setDataValidation": { "range": grid, "rule": { "condition": { "type": condition_type, "values": [ ({"userEnteredValue": value}) for value in values ], }, "showCustomUi": showCustomUi, "strict": strict, "inputMessage": inputMessage, }, } } ], } return self.client.batch_update(self.spreadsheet_id, body) def expand( self, top_left_range_name: str = "A1", direction: TableDirection = TableDirection.table, ) -> List[List[str]]: """Expands a cell range based on non-null adjacent cells. Expand can be done in 3 directions defined in :class:`~gspread.utils.TableDirection` * ``TableDirection.right``: expands right until the first empty cell * ``TableDirection.down``: expands down until the first empty cell * ``TableDirection.table``: expands right until the first empty cell and down until the first empty cell In case of empty result an empty list is restuned. When the given ``start_range`` is outside the given matrix of values the exception :class:`~gspread.exceptions.InvalidInputValue` is raised. Example:: values = [ ['', '', '', '', '' ], ['', 'B2', 'C2', '', 'E2'], ['', 'B3', 'C3', '', 'E3'], ['', '' , '' , '', 'E4'], ] >>> utils.find_table(TableDirection.table, 'B2') [ ['B2', 'C2'], ['B3', 'C3'], ] .. note:: the ``TableDirection.table`` will look right from starting cell then look down from starting cell. It will not check cells located inside the table. This could lead to potential empty values located in the middle of the table. .. note:: when it is necessary to use non-default options for :meth:`~gspread.worksheet.Worksheet.get`, please get the data first using desired options then use the function :func:`gspread.utils.find_table` to extract the desired table. :param str top_left_range_name: the top left corner of the table to expand. :param gspread.utils.TableDirection direction: the expand direction :rtype list(list): the resulting matrix """ values = self.get(pad_values=True) return find_table(values, top_left_range_name, direction) ================================================ FILE: lint-requirements.txt ================================================ bandit==1.7.10 black==24.8.0 codespell==2.2.5 flake8==7.1.1 isort==5.12.0 mypy==1.11.2 mypy-extensions==1.0.0 typing_extensions==4.12.2 ================================================ FILE: pyproject.toml ================================================ [build-system] requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [project] name = "gspread" authors = [{ name = "Anton Burnashev", email = "fuss.here@gmail.com" }] maintainers = [ { name = "Alexandre Lavigne", email = "lavigne958@gmail.com" }, { name = "alifeee", email = "alifeee.web@outlook.com" }, ] readme = "README.md" keywords = ["spreadsheets", "google-spreadsheets", "google-sheets"] classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Science/Research", "Topic :: Office/Business :: Financial :: Spreadsheet", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = ["google-auth>=1.12.0", "google-auth-oauthlib>=0.4.1"] requires-python = ">=3.8" dynamic = ["version", "description"] [project.urls] Documentation = "https://gspread.readthedocs.io/en/latest/" Source = "https://github.com/burnash/gspread" [project.license] file = "LICENSE.txt" [tool.flit.sdist] include = ["docs/", "HISTORY.rst"] [tool.setuptools.package-data] gspread = ["gspread/py.typed"] ================================================ FILE: test-requirements.txt ================================================ google-auth==1.12.0 google-auth-oauthlib==0.4.1 vcrpy pytest pytest-vcr urllib3==1.26.15 ================================================ FILE: tests/__init__.py ================================================ ================================================ FILE: tests/cassettes/CellTest.test_a1_value.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_a1_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:46 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:47 GMT" ], "Server": [ "ESF" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:47:44.700Z\",\n \"modifiedTime\": \"2023-07-20T08:47:44.720Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:47 GMT" ], "Server": [ "ESF" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:48 GMT" ], "Server": [ "ESF" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Dummy\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "23" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:48 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:48 GMT" ], "Server": [ "ESF" ], "content-length": [ "116" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Dummy\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_a1_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:16 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:54:14.016Z\",\n \"modifiedTime\": \"2023-07-20T08:54:14.035Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Dummy\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "23" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "116" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Dummy\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:18 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_a1_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:18 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Dummy\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "23" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "116" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Dummy\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:22 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_define_named_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_define_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Sat, 02 Mar 2024 10:34:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:38 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:39 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "412" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"220755387\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"220755387\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate", "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"220755387\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "67" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "3" ] }, "body": { "string": "{}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "413" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1263226031\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sat, 02 Mar 2024 10:34:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "content-length": [ "251" ] }, "body": { "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1263226031\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Sat, 02 Mar 2024 10:34:43 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_delete_named_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_delete_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:55 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:56 GMT" ], "Server": [ "ESF" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:56 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:47:53.621Z\",\n \"modifiedTime\": \"2023-07-20T08:47:53.640Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:56 GMT" ], "Server": [ "ESF" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:56 GMT" ], "Server": [ "ESF" ], "content-length": [ "413" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1792097461\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1792097461\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "68" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:57 GMT" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:57 GMT" ], "Server": [ "ESF" ], "content-length": [ "3" ] }, "body": { "string": "{}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:57 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_delete_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:26 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:54:23.944Z\",\n \"modifiedTime\": \"2023-07-20T08:54:24.780Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "412" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"643866637\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"643866637\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "67" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3" ] }, "body": { "string": "{}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:27 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_delete_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:30 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "412" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"346112917\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w:batchUpdate", "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"346112917\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "67" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?fields=namedRanges", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3" ] }, "body": { "string": "{}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_equality.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_equality\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:47:59 GMT" ], "Server": [ "ESF" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:00 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:47:58.076Z\",\n \"modifiedTime\": \"2023-07-20T08:47:58.885Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:01 GMT" ], "Server": [ "ESF" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:01 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:01 GMT" ], "Server": [ "ESF" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:01 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:01 GMT" ], "Server": [ "ESF" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:02 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_equality\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:30 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:31 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:54:28.355Z\",\n \"modifiedTime\": \"2023-07-20T08:54:28.372Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:32 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:32 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:32 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:32 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:34 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_equality\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:35 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:36 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:36 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "33" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "110" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:40 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_merge_cells.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_merge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:04 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:05 GMT" ], "Server": [ "ESF" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:05 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:48:02.877Z\",\n \"modifiedTime\": \"2023-07-20T08:48:03.770Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:05 GMT" ], "Server": [ "ESF" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[42, 43], [43, 44]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "32" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:05 GMT" ], "Server": [ "ESF" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "166" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:06 GMT" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:06 GMT" ], "Server": [ "ESF" ], "content-length": [ "3638" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:06 GMT" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:07 GMT" ], "Server": [ "ESF" ], "content-length": [ "3496" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:07 GMT" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:07 GMT" ], "Server": [ "ESF" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_merge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:35 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:54:34.403Z\",\n \"modifiedTime\": \"2023-07-20T08:54:34.926Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[42, 43], [43, 44]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "32" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "166" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3638" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3496" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:38 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_merge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:43 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[42, 43], [43, 44]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "32" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "166" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3638" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3496" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:48 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_numeric_value.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_numeric_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:10 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:11 GMT" ], "Server": [ "ESF" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:48:08.567Z\",\n \"modifiedTime\": \"2023-07-20T08:48:08.584Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:11 GMT" ], "Server": [ "ESF" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"= 1 / 1024\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "28" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:12 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:12 GMT" ], "Server": [ "ESF" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"0.0009765625\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"2,000,000.01\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "30" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:12 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:12 GMT" ], "Server": [ "ESF" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2,000,000.01\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Non-numeric value\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:13 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:13 GMT" ], "Server": [ "ESF" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Non-numeric value\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:13 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_numeric_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:41 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:41 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:54:39.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:40.323Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"= 1 / 1024\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "28" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"0.0009765625\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"2,000,000.01\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "30" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2,000,000.01\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Non-numeric value\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Non-numeric value\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:44 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_numeric_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:50 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"= 1 / 1024\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "28" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"0.0009765625\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"2,000,000.01\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "30" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2,000,000.01\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Non-numeric value\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Non-numeric value\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:54 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/CellTest.test_properties.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:15 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:16 GMT" ], "Server": [ "ESF" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:16 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:48:14.243Z\",\n \"modifiedTime\": \"2023-07-20T08:48:15.032Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:16 GMT" ], "Server": [ "ESF" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_properties 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:16 GMT" ], "Server": [ "ESF" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:17 GMT" ], "Server": [ "ESF" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_properties 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 20 Jul 2023 08:48:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 20 Jul 2023 08:54:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:54:44.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:44.555Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_properties 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 20 Jul 2023 08:54:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_properties 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Content-Length": [ "0" ], "Date": [ "Thu, 20 Jul 2023 08:54:48 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test CellTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:57 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:57 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_properties 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "35" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:13:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_properties 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:13:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_access_non_existing_spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:40 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ\",\n \"name\": \"Test ClientTest test_access_non_existing_spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:40 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3350" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_non_existing_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:41 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "216" ] }, "body": { "string": "{\n \"id\": \"1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ\",\n \"name\": \"Test ClientTest test_access_non_existing_spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:36.993Z\",\n \"modifiedTime\": \"2023-08-17T10:52:37.010Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 404, "message": "Not Found" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:41 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 404, "message": "Not Found" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:41 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:42 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_access_non_existing_spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:03 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw\",\n \"name\": \"Test ClientTest test_access_non_existing_spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3350" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_non_existing_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 404, "message": "Not Found" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 404, "message": "Not Found" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:04 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_access_private_spreadsheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_access_private_spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "114" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 17 Feb 2024 11:03:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 17 Feb 2024 11:04:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Sat, 17 Feb 2024 11:04:01 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ] }, "body": { "string": "" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jIKzPs8LsiZZdLdeMEP-5ZIHw6RkjiOmj1LrJN706Yc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 403, "message": "Forbidden" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Date": [ "Sat, 17 Feb 2024 11:06:25 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "126" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 403,\n \"message\": \"The caller does not have permission\",\n \"status\": \"PERMISSION_DENIED\"\n }\n}\n" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_add_timeout.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_add_timeout\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 21 Feb 2024 21:21:08 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko\",\n \"name\": \"Test ClientTest test_add_timeout\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 21 Feb 2024 21:21:08 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko\",\n \"properties\": {\n \"title\": \"Test ClientTest test_add_timeout\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 21 Feb 2024 21:21:09 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko\",\n \"properties\": {\n \"title\": \"Test ClientTest test_add_timeout\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Wed, 21 Feb 2024 21:21:09 GMT" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_client_export_spreadsheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_client_export_spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:28 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I\",\n \"name\": \"Test ClientTest test_client_export_spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:29 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I\",\n \"properties\": {\n \"title\": \"Test ClientTest test_client_export_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:29 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I\",\n \"properties\": {\n \"title\": \"Test ClientTest test_client_export_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[\"a1\", \"B2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "50" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:30 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/export?mimeType=text%2Fcsv", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:30 GMT" ], "X-GUploader-UploadID": [ "ABPtcPpyQMUSi1FArIhJ9Wli20pJx3k-JsRa7208kF72_kMznYxnpfGD3kpMvU8HRhMjMHBmKwMo3uQvEA" ], "Content-Type": [ "text/csv" ], "Server": [ "ESF" ], "Expires": [ "Tue, 30 Jan 2024 23:34:30 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Content-Length": [ "5" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private, max-age=0, must-revalidate" ], "Content-Disposition": [ "attachment" ], "Access-Control-Allow-Credentials": [ "true" ] }, "body": { "string": "a1,B2" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 30 Jan 2024 23:34:31 GMT" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Length": [ "0" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_copy.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_copy\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "92" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:49 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "179" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4\",\n \"name\": \"Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:50 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3323" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:50 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"id\": \"1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4\",\n \"name\": \"Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:47.380Z\",\n \"modifiedTime\": \"2023-08-17T10:52:47.397Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/copy?supportsAllDrives=True", "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "69" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:52 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "187" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:53 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:53 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:53 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "21" ] }, "body": { "string": "{\n \"comments\": []\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:54 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3323" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:54 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:54 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_copy\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "92" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:10 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "179" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w\",\n \"name\": \"Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3323" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/copy?supportsAllDrives=True", "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "69" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:12 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "187" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:13 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "21" ] }, "body": { "string": "{\n \"comments\": []\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3323" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:14 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_create.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_create\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:57 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg\",\n \"name\": \"Test ClientTest test_create\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg\",\n \"properties\": {\n \"title\": \"Test ClientTest test_create\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:52:58 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"id\": \"1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg\",\n \"name\": \"Test ClientTest test_create\",\n \"createdTime\": \"2023-08-17T10:52:55.207Z\",\n \"modifiedTime\": \"2023-08-17T10:52:55.234Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "83" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:00 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "170" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:00 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:01 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:01 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_create\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "181" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8\",\n \"name\": \"Test ClientTest test_create\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3325" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8\",\n \"properties\": {\n \"title\": \"Test ClientTest test_create\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "83" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:20 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "170" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_import_csv.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_import_csv\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:04 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "185" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"name\": \"Test ClientTest test_import_csv\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:05 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:05 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"id\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"name\": \"Test ClientTest test_import_csv\",\n \"createdTime\": \"2023-08-17T10:53:01.917Z\",\n \"modifiedTime\": \"2023-08-17T10:53:01.937Z\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://www.googleapis.com/upload/drive/v2/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?uploadType=media&convert=True&supportsAllDrives=True", "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Type": [ "text/csv" ], "Content-Length": [ "294" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Access-Control-Allow-Credentials": [ "true" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "4314" ], "Pragma": [ "no-cache" ], "ETag": [ "\"MTY5MjI2OTU4NjE3NQ\"" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:07 GMT" ], "X-GUploader-UploadID": [ "ADPycdtYj4THnT5bXug1txMmUlc7nnr66wvyF4O8ELCXfmMhhNgVszbKm2KTQU_5f17s8kU2e97y6RGsF3g_YbRFZoQauQ" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/permissions/me\",\n \"etag\": \"\\\"yyZSybtjDu4M_Bc7zj5LIgGS4H0\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo&v=1&s=AMedNnoAAAAAZN4YM21yVX4kfHpJuR3VAd90-q9nEANn&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY5MjI2OTU4NjE3NQ\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"title\": \"Test ClientTest test_import_csv\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-08-17T10:53:01.917Z\",\n \"modifiedDate\": \"2023-08-17T10:53:06.175Z\",\n \"modifiedByMeDate\": \"2023-08-17T10:53:06.175Z\",\n \"lastViewedByMeDate\": \"2023-08-17T10:53:06.175Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:07 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3374" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 845285688,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:08 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"id\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"name\": \"Test ClientTest test_import_csv\",\n \"createdTime\": \"2023-08-17T10:53:01.917Z\",\n \"modifiedTime\": \"2023-08-17T10:53:06.175Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:08 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3374" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 845285688,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/values/%27Test%20ClientTest%20test_import_csv%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:08 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "593" ] }, "body": { "string": "{\n \"range\": \"'Test ClientTest test_import_csv'!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:09 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_import_csv\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:23 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "185" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"name\": \"Test ClientTest test_import_csv\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://www.googleapis.com/upload/drive/v2/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?uploadType=media&convert=True&supportsAllDrives=True", "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Type": [ "text/csv" ], "Content-Length": [ "294" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Access-Control-Allow-Credentials": [ "true" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:26 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-GUploader-UploadID": [ "ADPycduyeA5fnsbv-UI4tdXW4dtIP9H1VzA7gWu6SFQ-412UW5NGSgFslxhfvASLOtR3bNERGWCrtnCl27aU2C7N4ZMHUA" ], "Content-Length": [ "4314" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "ETag": [ "\"MTY5NDAzNDg2NTc3Ng\"" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/permissions/me\",\n \"etag\": \"\\\"HOm56htFDY3fWHfHPwqhP16QdYk\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s&v=1&s=AMedNnoAAAAAZPkH0izPoTzBjXdtB_UhakfZyyPflGgm&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY5NDAzNDg2NTc3Ng\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"title\": \"Test ClientTest test_import_csv\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-09-06T21:14:21.525Z\",\n \"modifiedDate\": \"2023-09-06T21:14:25.776Z\",\n \"modifiedByMeDate\": \"2023-09-06T21:14:25.776Z\",\n \"lastViewedByMeDate\": \"2023-09-06T21:14:25.776Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3374" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 163586385,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3374" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 163586385,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/values/%27Test%20ClientTest%20test_import_csv%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:28 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "593" ] }, "body": { "string": "{\n \"range\": \"'Test ClientTest test_import_csv'!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_list_spreadsheet_files.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_list_spreadsheet_files\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Fri, 29 Sep 2023 19:39:06 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc\",\n \"name\": \"Test ClientTest test_list_spreadsheet_files\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Fri, 29 Sep 2023 19:39:06 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc\",\n \"properties\": {\n \"title\": \"Test ClientTest test_list_spreadsheet_files\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Fri, 29 Sep 2023 19:39:07 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "280" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc\",\n \"name\": \"Test ClientTest test_list_spreadsheet_files\",\n \"createdTime\": \"2023-09-29T19:39:04.519Z\",\n \"modifiedTime\": \"2023-09-29T19:39:05.549Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Date": [ "Fri, 29 Sep 2023 19:39:07 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_no_found_exeption.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_no_found_exeption\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:11 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous\",\n \"name\": \"Test ClientTest test_no_found_exeption\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:12 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous\",\n \"properties\": {\n \"title\": \"Test ClientTest test_no_found_exeption\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:12 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous\",\n \"name\": \"Test ClientTest test_no_found_exeption\",\n \"createdTime\": \"2023-08-17T10:53:09.391Z\",\n \"modifiedTime\": \"2023-08-17T10:53:09.407Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Please+don%27t+use+this+phrase+as+a+name+of+a+sheet.%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:12 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "46" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": []\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:13 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_no_found_exeption\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:31 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU\",\n \"name\": \"Test ClientTest test_no_found_exeption\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU\",\n \"properties\": {\n \"title\": \"Test ClientTest test_no_found_exeption\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Please+don%27t+use+this+phrase+as+a+name+of+a+sheet.%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "46" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": []\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_open_all_has_metadata.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_all_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:16 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:16 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_all_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:16 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:13.829Z\",\n \"modifiedTime\": \"2023-08-17T10:53:13.861Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:17 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "6941" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:13.829Z\",\n \"modifiedTime\": \"2023-08-17T10:53:13.861Z\"\n },\n {\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n },\n {\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n },\n {\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n },\n {\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n },\n {\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n },\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:17 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_all_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:17 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:13.829Z\",\n \"modifiedTime\": \"2023-08-17T10:53:13.861Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:18 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:18 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:18 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:18 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:19 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"properties\": {\n \"title\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:19 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "225" ] }, "body": { "string": "{\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:19 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:20 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:20 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:21 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "211" ] }, "body": { "string": "{\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:21 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:21 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:22 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:22 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:22 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:23 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:23 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:23 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:24 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:24 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:25 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:25 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:26 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:26 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:26 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:27 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:27 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:27 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:28 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:28 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "211" ] }, "body": { "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:29 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:29 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:30 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:30 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:30 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:31 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:31 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:31 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:32 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:32 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:33 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:33 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:33 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:34 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:34 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:34 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:35 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:35 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:36 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:36 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:36 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:37 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:37 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:37 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:38 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:38 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:39 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:39 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:39 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:40 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:40 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:40 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:41 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_all_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:35 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:36 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_all_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "7368" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k\",\n \"name\": \"Test ClientTest test_open_all_has_metadata\",\n \"createdTime\": \"2023-09-06T21:14:34.153Z\",\n \"modifiedTime\": \"2023-09-06T21:14:35.063Z\"\n },\n {\n \"id\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-09-06T21:14:18.648Z\",\n \"modifiedTime\": \"2023-09-06T21:14:19.540Z\"\n },\n {\n \"id\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-09-06T21:14:11.159Z\",\n \"modifiedTime\": \"2023-09-06T21:14:11.159Z\"\n },\n {\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n },\n {\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n },\n {\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n },\n {\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n },\n {\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n },\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_all_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"properties\": {\n \"title\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:49 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:49 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:50 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:57 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:14:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:14:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_open_by_key_has_metadata.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_by_key_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:44 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o\",\n \"name\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:44 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:45 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o\",\n \"name\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:41.893Z\",\n \"modifiedTime\": \"2023-08-17T10:53:41.910Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:45 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:45 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o\",\n \"name\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:41.893Z\",\n \"modifiedTime\": \"2023-08-17T10:53:41.910Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:46 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_by_key_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:01 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0\",\n \"name\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_key_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:03 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_open_by_name_has_metadata.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_by_name_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:48 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:49 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:49 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"id\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:46.447Z\",\n \"modifiedTime\": \"2023-08-17T10:53:46.472Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+ClientTest+test_open_by_name_has_metadata%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:49 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "283" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:46.447Z\",\n \"modifiedTime\": \"2023-08-17T10:53:46.472Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:50 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:50 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"id\": \"1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"createdTime\": \"2023-08-17T10:53:46.447Z\",\n \"modifiedTime\": \"2023-08-17T10:53:46.472Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:50 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_open_by_name_has_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:06 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+ClientTest+test_open_by_name_has_metadata%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:07 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "283" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8\",\n \"name\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"createdTime\": \"2023-09-06T21:15:03.860Z\",\n \"modifiedTime\": \"2023-09-06T21:15:03.881Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8\",\n \"properties\": {\n \"title\": \"Test ClientTest test_open_by_name_has_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/ClientTest.test_openall.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_openall\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:53 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:53 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:53 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-08-17T10:53:51.177Z\",\n \"modifiedTime\": \"2023-08-17T10:53:52.280Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:54 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "6927" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-08-17T10:53:51.177Z\",\n \"modifiedTime\": \"2023-08-17T10:53:52.280Z\"\n },\n {\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n },\n {\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n },\n {\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n },\n {\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n },\n {\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n },\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:54 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:54 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-08-17T10:53:51.177Z\",\n \"modifiedTime\": \"2023-08-17T10:53:52.280Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:54 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:55 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:55 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:55 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:55 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"properties\": {\n \"title\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:56 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "225" ] }, "body": { "string": "{\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:56 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:56 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "211" ] }, "body": { "string": "{\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:57 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:57 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:58 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:58 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:58 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:58 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:59 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:59 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:59 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:53:59 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:00 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:00 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:00 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:00 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:01 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:01 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:01 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "211" ] }, "body": { "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:01 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:02 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:02 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:02 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:02 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:02 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:03 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:03 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:03 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:03 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:04 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:04 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:04 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:04 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:04 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:05 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:05 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:05 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:05 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:06 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:06 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:06 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:06 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:07 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:07 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:07 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:07 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:08 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:08 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:08 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "172" ] }, "body": { "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:08 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:08 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+ClientTest+test_openall%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:09 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-08-17T10:53:51.177Z\",\n \"modifiedTime\": \"2023-08-17T10:53:52.280Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:09 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:09 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-08-17T10:53:51.177Z\",\n \"modifiedTime\": \"2023-08-17T10:53:52.280Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Thu, 17 Aug 2023 10:54:10 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test ClientTest test_openall\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"name\": \"Test ClientTest test_openall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:12 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "7354" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-09-06T21:15:08.962Z\",\n \"modifiedTime\": \"2023-09-06T21:15:08.979Z\"\n },\n {\n \"id\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-09-06T21:14:18.648Z\",\n \"modifiedTime\": \"2023-09-06T21:14:19.540Z\"\n },\n {\n \"id\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-09-06T21:14:11.159Z\",\n \"modifiedTime\": \"2023-09-06T21:14:11.159Z\"\n },\n {\n \"id\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-08-17T10:52:58.348Z\",\n \"modifiedTime\": \"2023-08-17T10:52:59.436Z\"\n },\n {\n \"id\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-08-17T10:52:50.864Z\",\n \"modifiedTime\": \"2023-08-17T10:52:50.864Z\"\n },\n {\n \"id\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"name\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-16T08:56:57.269Z\",\n \"modifiedTime\": \"2023-08-16T08:56:57.289Z\"\n },\n {\n \"id\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-08-13T10:24:35.613Z\",\n \"modifiedTime\": \"2023-08-13T10:24:35.634Z\"\n },\n {\n \"id\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-08-08T11:05:14.670Z\",\n \"modifiedTime\": \"2023-08-08T11:05:15.713Z\"\n },\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE\",\n \"properties\": {\n \"title\": \"Test ClientTestWithoutBackoff test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3345" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3324" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3314" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3306" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:25 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+ClientTest+test_openall%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-09-06T21:15:08.962Z\",\n \"modifiedTime\": \"2023-09-06T21:15:08.979Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:25 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:26 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_add_del_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:56 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:57 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:57 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"createdTime\": \"2023-08-09T19:33:54.965Z\",\n \"modifiedTime\": \"2023-08-09T19:33:54.983Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:57 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "395" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 3\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "395" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "4114" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1877059582}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "56" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 580173816}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "55" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1396229743}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "56" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:34:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 09 Aug 2023 19:34:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Server": [ "ESF" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_add_del_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "395" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 2073684913,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "395" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1450538767,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 3\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 154523652,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "4114" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 2073684913,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1450538767,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 154523652,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 2073684913}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "56" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1450538767}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "56" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 154523652}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "55" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_bad_json_api_error.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_bad_json_api_error\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Sun, 22 Sep 2024 21:14:56 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y\",\n \"name\": \"Test SpreadsheetTest test_bad_json_api_error\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Sun, 22 Sep 2024 21:14:57 GMT" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_bad_json_api_error\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Date": [ "Sun, 22 Sep 2024 21:14:57 GMT" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_creationTime_prop.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Tue, 08 Aug 2023 12:38:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Tue, 08 Aug 2023 12:38:59 GMT" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Tue, 08 Aug 2023 12:39:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-08-08T12:38:56.973Z\",\n \"modifiedTime\": \"2023-08-08T12:38:57.752Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Tue, 08 Aug 2023 12:39:00 GMT" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:35 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:37 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-09-06T21:15:34.270Z\",\n \"modifiedTime\": \"2023-09-06T21:15:34.959Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:38 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Wed, 06 Sep 2023 21:23:57 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Date": [ "Wed, 06 Sep 2023 21:23:57 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Wed, 06 Sep 2023 21:23:57 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-09-06T21:23:54.253Z\",\n \"modifiedTime\": \"2023-09-06T21:23:54.272Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Wed, 06 Sep 2023 21:23:59 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "Date": [ "Wed, 06 Sep 2023 21:25:14 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "Date": [ "Wed, 06 Sep 2023 21:25:15 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "Date": [ "Wed, 06 Sep 2023 21:25:15 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-09-06T21:25:11.880Z\",\n \"modifiedTime\": \"2023-09-06T21:25:11.898Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:25:16 GMT" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_export_spreadsheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_export_spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Tue, 30 Jan 2024 23:34:40 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\",\n \"name\": \"Test SpreadsheetTest test_export_spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Tue, 30 Jan 2024 23:34:41 GMT" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_export_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Tue, 30 Jan 2024 23:34:41 GMT" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_export_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/edit\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[\"a1\", \"B2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "50" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Tue, 30 Jan 2024 23:34:41 GMT" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/export?mimeType=text%2Fcsv", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-GUploader-UploadID": [ "ABPtcPpwN3m6BoHXvUu760qgpC4XkRuZw-tbLFB8MnBZ1Mnjy2ncYcTRbOVbisHbpw7vpA0mP9sIdCwnIg" ], "Cache-Control": [ "private, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "5" ], "Access-Control-Allow-Credentials": [ "true" ], "Server": [ "ESF" ], "Expires": [ "Tue, 30 Jan 2024 23:34:42 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/csv" ], "Date": [ "Tue, 30 Jan 2024 23:34:42 GMT" ], "Content-Disposition": [ "attachment" ] }, "body": { "string": "a1,B2" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Tue, 30 Jan 2024 23:34:42 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:00 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:01 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:01 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"id\": \"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"createdTime\": \"2023-09-06T21:29:57.884Z\",\n \"modifiedTime\": \"2023-09-06T21:29:57.905Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:02 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:02 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-09-06T21:29:57.884Z\",\n \"modifiedTime\": \"2023-09-06T21:30:02.174Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Wed, 06 Sep 2023 21:30:03 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_get_worksheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_get_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:38:52 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:38:52 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:38:53 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "203" ] }, "body": { "string": "{\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"createdTime\": \"2023-07-25T15:38:50.176Z\",\n \"modifiedTime\": \"2023-07-25T15:38:51.006Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:38:53 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:38:54 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_get_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:44 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:45 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:17:57 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:17:58 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:17:58 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"createdTime\": \"2023-08-09T19:17:55.684Z\",\n \"modifiedTime\": \"2023-08-09T19:17:55.702Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:17:59 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:17:59 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Wed, 09 Aug 2023 19:18:00 GMT" ], "Content-Type": [ "text/html" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:00.952Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:04 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:04 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:03.767Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:05 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_properties.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:08 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:09 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:09 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"createdTime\": \"2023-07-25T15:39:05.858Z\",\n \"modifiedTime\": \"2023-07-25T15:39:06.869Z\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:10 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:51 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:53 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_sheet1.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_sheet1\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:12 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"createdTime\": \"2023-07-25T15:39:10.728Z\",\n \"modifiedTime\": \"2023-07-25T15:39:11.628Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:14 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_sheet1\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:55 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:15:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3330" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:57 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_timezone_and_locale\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"createdTime\": \"2023-07-25T15:39:15.028Z\",\n \"modifiedTime\": \"2023-07-25T15:39:15.047Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"timeZone\": \"Europe/Paris\"}, \"fields\": \"timeZone\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "115" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"locale\": \"fr_FR\"}, \"fields\": \"locale\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:20 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:20 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:21 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_timezone_and_locale\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:15:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"timeZone\": \"Europe/Paris\"}, \"fields\": \"timeZone\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "115" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"locale\": \"fr_FR\"}, \"fields\": \"locale\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:01 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_update_title.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_update_title\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:24 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:26 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:27 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:39:21.917Z\",\n \"modifiedTime\": \"2023-07-25T15:39:23.094Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:28 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:28 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:29 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_update_title\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:03 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:06 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_values_batch_get.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_values_batch_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:31 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:32 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:32 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"createdTime\": \"2023-07-25T15:39:29.463Z\",\n \"modifiedTime\": \"2023-07-25T15:39:30.504Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_batch_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "171" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "400" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 901015854,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "699" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 901015854}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "55" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:34 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:34 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_values_batch_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_batch_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "171" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "401" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1623847058,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "699" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1623847058}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "56" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_values_get.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_values_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:37 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:38 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:38 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"createdTime\": \"2023-07-25T15:39:35.653Z\",\n \"modifiedTime\": \"2023-07-25T15:39:36.723Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:39 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 463885193,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:39 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:40 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "203" ] }, "body": { "string": "{\n \"range\": \"'\ud83c\udf35 test_values_get 1'!A1:J10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\",\n \"\ud83c\udf49\",\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf50\",\n \"\ud83c\udf4e\",\n \"\ud83c\udf53\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 463885193}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "55" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:40 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:41 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_values_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:13 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 269627643,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "186" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc/values/%F0%9F%8C%B5%20test_values_get%201", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "203" ] }, "body": { "string": "{\n \"range\": \"'\ud83c\udf35 test_values_get 1'!A1:J10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\",\n \"\ud83c\udf49\",\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf50\",\n \"\ud83c\udf4e\",\n \"\ud83c\udf53\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc:batchUpdate", "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 269627643}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "55" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:16 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_worksheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:43 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:44 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:44 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"createdTime\": \"2023-07-25T15:39:41.672Z\",\n \"modifiedTime\": \"2023-07-25T15:39:42.568Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:44 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:45 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:18 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:20 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheet_iteration\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:48 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"createdTime\": \"2023-07-25T15:39:46.079Z\",\n \"modifiedTime\": \"2023-07-25T15:39:47.295Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:50 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheet_iteration\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:24 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_worksheets.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheets\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:54 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:55 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:55 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"createdTime\": \"2023-07-25T15:39:51.226Z\",\n \"modifiedTime\": \"2023-07-25T15:39:51.245Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:55 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "145" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:56 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "383" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:56 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3580" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:39:57 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheets\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:26 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "145" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "382" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 736036187,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3579" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 736036187,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:01 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:01 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:01 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "215" ] }, "body": { "string": "{\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"createdTime\": \"2023-07-25T15:39:57.622Z\",\n \"modifiedTime\": \"2023-07-25T15:39:57.639Z\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "145" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "383" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"gacha\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "142" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "379" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 755875121, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3861" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3861" ] }, "body": { "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 25 Jul 2023 15:40:04 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:30 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "145" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "383" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1487687234,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"gacha\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "142" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "380" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1004156603,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1004156603, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3862" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1487687234,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1004156603,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3862" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1487687234,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1004156603,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_acell.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_acell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"createdTime\": \"2023-07-25T15:40:42.854Z\",\n \"modifiedTime\": \"2023-07-25T15:40:42.873Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_acell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:39 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_add_protected_range_normal.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_add_protected_range_normal\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:12 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "content-length": [ "204" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"name\": \"Test WorksheetTest test_add_protected_range_normal\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:12 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_normal\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:13 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_normal\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:13 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI:batchUpdate", "body": "{\"requests\": [{\"addProtectedRange\": {\"protectedRange\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"description\": null, \"warningOnly\": false, \"requestingUserCanEdit\": false, \"editors\": {\"users\": [], \"groups\": []}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "281" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:14 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "447" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"replies\": [\n {\n \"addProtectedRange\": {\n \"protectedRange\": {\n \"protectedRangeId\": 1086220710,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"requestingUserCanEdit\": true,\n \"editors\": {}\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:14 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3798" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_normal\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"protectedRanges\": [\n {\n \"protectedRangeId\": 1086220710,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"requestingUserCanEdit\": true,\n \"editors\": {\n \"users\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ]\n }\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 15 Mar 2024 15:59:14 GMT" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_add_protected_range_warning.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_add_protected_range_warning\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Fri, 15 Mar 2024 16:02:28 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"name\": \"Test WorksheetTest test_add_protected_range_warning\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Fri, 15 Mar 2024 16:02:29 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_warning\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Fri, 15 Mar 2024 16:02:30 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_warning\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Fri, 15 Mar 2024 16:02:30 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s:batchUpdate", "body": "{\"requests\": [{\"addProtectedRange\": {\"protectedRange\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"description\": null, \"warningOnly\": true, \"requestingUserCanEdit\": false, \"editors\": null}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "257" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Fri, 15 Mar 2024 16:02:30 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "478" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"replies\": [\n {\n \"addProtectedRange\": {\n \"protectedRange\": {\n \"protectedRangeId\": 1120923012,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"warningOnly\": true,\n \"requestingUserCanEdit\": true,\n \"editors\": {}\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Fri, 15 Mar 2024 16:02:31 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3830" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_protected_range_warning\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"protectedRanges\": [\n {\n \"protectedRangeId\": 1120923012,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"warningOnly\": true,\n \"requestingUserCanEdit\": true,\n \"editors\": {\n \"users\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ]\n }\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ "Fri, 15 Mar 2024 16:02:31 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_add_validation.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_add_validation\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\",\n \"name\": \"Test WorksheetTest test_add_validation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_validation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_add_validation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA:batchUpdate", "body": "{\"requests\": [{\"setDataValidation\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"rule\": {\"condition\": {\"type\": \"ONE_OF_LIST\", \"values\": [{\"userEnteredValue\": \"y\"}]}, \"showCustomUi\": false, \"strict\": true, \"inputMessage\": \"n\"}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "293" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": \"X\", \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "39" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 400, "message": "Bad Request" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:43 GMT" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "content-length": [ "491" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"X\\\"\",\n \"status\": \"INVALID_ARGUMENT\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.BadRequest\",\n \"fieldViolations\": [\n {\n \"field\": \"data.values\",\n \"description\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"X\\\"\"\n }\n ]\n }\n ]\n }\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Fri, 29 Mar 2024 06:00:44 GMT" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_append_row.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"createdTime\": \"2023-07-25T15:40:49.067Z\",\n \"modifiedTime\": \"2023-07-25T15:40:49.085Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row 1\", \"test_append_row 2\", \"test_append_row 3\", \"test_append_row 4\", \"test_append_row 5\", \"test_append_row 6\", \"test_append_row 7\", \"test_append_row 8\", \"test_append_row 9\", \"test_append_row 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "225" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updates\": {\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_append_row 1\",\n \"test_append_row 2\",\n \"test_append_row 3\",\n \"test_append_row 4\",\n \"test_append_row 5\",\n \"test_append_row 6\",\n \"test_append_row 7\",\n \"test_append_row 8\",\n \"test_append_row 9\",\n \"test_append_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:41 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row 1\", \"test_append_row 2\", \"test_append_row 3\", \"test_append_row 4\", \"test_append_row 5\", \"test_append_row 6\", \"test_append_row 7\", \"test_append_row 8\", \"test_append_row 9\", \"test_append_row 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "225" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"updates\": {\n \"spreadsheetId\": \"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_append_row 1\",\n \"test_append_row 2\",\n \"test_append_row 3\",\n \"test_append_row 4\",\n \"test_append_row 5\",\n \"test_append_row 6\",\n \"test_append_row 7\",\n \"test_append_row 8\",\n \"test_append_row 9\",\n \"test_append_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:44 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row_with_empty_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:40:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "215" ] }, "body": { "string": "{\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"createdTime\": \"2023-07-25T15:40:55.805Z\",\n \"modifiedTime\": \"2023-07-25T15:40:55.828Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "293" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"\",\n \"test_append_row_with_empty_value 1\",\n \"\",\n \"test_append_row_with_empty_value 3\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row_with_empty_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:49 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:49 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"updates\": {\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "94" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:50 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "293" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:50 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"\",\n \"test_append_row_with_empty_value 1\",\n \"\",\n \"test_append_row_with_empty_value 3\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:51 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "134" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "221" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "231" ] }, "body": { "string": "{\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"createdTime\": \"2023-07-25T15:41:02.705Z\",\n \"modifiedTime\": \"2023-07-25T15:41:02.727Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "293" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "218" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_append_row_with_empty_value_and_table_range 1\",\n \"\",\n \"test_append_row_with_empty_value_and_table_range 3\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:08 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "134" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:53 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "221" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"updates\": {\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "293" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "218" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_append_row_with_empty_value_and_table_range 1\",\n \"\",\n \"test_append_row_with_empty_value_and_table_range 3\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:56 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_attributes.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_attributes\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 01 Feb 2024 19:23:23 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\",\n \"name\": \"Test WorksheetTest test_attributes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 01 Feb 2024 19:23:24 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_attributes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 01 Feb 2024 19:23:24 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_attributes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 01 Feb 2024 19:23:25 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 01 Feb 2024 19:23:26 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_auto_resize_columns.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_auto_resize_columns\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"createdTime\": \"2023-07-25T15:41:09.036Z\",\n \"modifiedTime\": \"2023-07-25T15:41:09.826Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "1042" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "1679" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"columnMetadata\": [\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo:batchUpdate", "body": "{\"requests\": [{\"autoResizeDimensions\": {\"dimensions\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 1}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "128" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "1680" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"columnMetadata\": [\n {\n \"pixelSize\": 8691\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:14 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_auto_resize_columns\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:16:58 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:16:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "1042" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "1679" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"columnMetadata\": [\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo:batchUpdate", "body": "{\"requests\": [{\"autoResizeDimensions\": {\"dimensions\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 1}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "128" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "1680" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"columnMetadata\": [\n {\n \"pixelSize\": 8691\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n },\n {\n \"pixelSize\": 100\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:02 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_basic_filters.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_basic_filters\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"createdTime\": \"2023-07-25T15:41:15.414Z\",\n \"modifiedTime\": \"2023-07-25T15:41:16.533Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 20, \"columnCount\": 20}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "192" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3517" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "155" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3515" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "155" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3515" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"clearBasicFilter\": {\"sheetId\": 0}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "52" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_basic_filters\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:04 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:06 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 20, \"columnCount\": 20}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "192" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:06 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:06 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3517" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "155" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3515" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "155" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3515" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate", "body": "{\"requests\": [{\"clearBasicFilter\": {\"sheetId\": 0}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "52" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_batch_clear.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_clear\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"createdTime\": \"2023-07-25T15:41:22.745Z\",\n \"modifiedTime\": \"2023-07-25T15:41:22.763Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", "body": "{\"values\": [[\"12345\", \"ThisIsText\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "37" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", "body": "{\"values\": [[\"5678\", \"Second\", \"Text\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "40" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "123" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"12345\",\n \"ThisIsText\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "132" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"5678\",\n \"Second\",\n \"Text\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values:batchClear", "body": "{\"ranges\": [\"'Sheet1'!A1:B1\", \"'Sheet1'!C2:E2\"]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "48" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_clear\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", "body": "{\"values\": [[\"12345\", \"ThisIsText\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "37" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", "body": "{\"values\": [[\"5678\", \"Second\", \"Text\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "40" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:13 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "123" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"12345\",\n \"ThisIsText\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "132" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"5678\",\n \"Second\",\n \"Text\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values:batchClear", "body": "{\"ranges\": [\"'Sheet1'!A1:B1\", \"'Sheet1'!C2:E2\"]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "48" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C2:E2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:15 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_batch_get.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "100" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "187" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"createdTime\": \"2023-07-25T15:41:31.465Z\",\n \"modifiedTime\": \"2023-07-25T15:41:32.518Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "413" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "100" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:19 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "187" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "413" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:22 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_batch_merged_cells.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_merged_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "Date": [ "Tue, 24 Sep 2024 16:46:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"name\": \"Test WorksheetTest test_batch_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:39 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:40 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:41 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:42 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "122" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:43 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"mergeType\": \"MERGE_ALL\"}}, {\"mergeCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}, \"mergeType\": \"MERGE_ALL\"}}, {\"mergeCells\": {\"range\": {\"startRowIndex\": 2, \"endRowIndex\": 4, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}, \"mergeType\": \"MERGE_ALL\"}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "467" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:43 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "113" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"replies\": [\n {},\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:44 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:45 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:45 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3788" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:46 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Date": [ "Tue, 24 Sep 2024 16:46:47 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3788" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "Date": [ "Tue, 24 Sep 2024 16:46:48 GMT" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_batch_update.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_update\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"createdTime\": \"2023-07-25T15:41:37.158Z\",\n \"modifiedTime\": \"2023-07-25T15:41:37.181Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values:batchUpdate", "body": "{\"valueInputOption\": \"RAW\", \"data\": [{\"range\": \"'Sheet1'!A1:D1\", \"values\": [[\"A1\", \"B1\", \"\", \"D1\"]]}, {\"range\": \"'Sheet1'!A4:D4\", \"values\": [[\"A4\", \"B4\", \"\", \"D4\"]]}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "167" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "591" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_batch_update\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:26 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values:batchUpdate", "body": "{\"valueInputOption\": \"RAW\", \"data\": [{\"range\": \"'Sheet1'!A1:D1\", \"values\": [[\"A1\", \"B1\", \"\", \"D1\"]]}, {\"range\": \"'Sheet1'!A4:D4\", \"values\": [[\"A4\", \"B4\", \"\", \"D4\"]]}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "167" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:28 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "591" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:28 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:29 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_cell.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_cell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"createdTime\": \"2023-07-25T15:41:43.827Z\",\n \"modifiedTime\": \"2023-07-25T15:41:45.109Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_cell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:32 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:34 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_cell_return_first.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_cell_return_first\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "108" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Thu, 01 Feb 2024 19:55:41 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E\",\n \"name\": \"Test WorksheetTest test_cell_return_first\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Date": [ "Thu, 01 Feb 2024 19:55:42 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell_return_first\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Date": [ "Thu, 01 Feb 2024 19:55:42 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell_return_first\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Date": [ "Thu, 01 Feb 2024 19:55:43 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Date": [ "Thu, 01 Feb 2024 19:55:44 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Thu, 01 Feb 2024 19:55:44 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_clear.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_clear\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"createdTime\": \"2023-07-25T15:41:49.215Z\",\n \"modifiedTime\": \"2023-07-25T15:41:50.205Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "131" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_clear\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:38 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "131" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:42 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_clear_tab_color.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_clear_tab_color\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "203" ] }, "body": { "string": "{\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"createdTime\": \"2023-07-25T15:41:55.358Z\",\n \"modifiedTime\": \"2023-07-25T15:41:56.179Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "168" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": null}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "137" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:41:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_clear_tab_color\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:45 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "168" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": null}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "137" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_copy_cut_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_copy_cut_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:03 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:04 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:04 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"createdTime\": \"2023-07-25T15:42:01.377Z\",\n \"modifiedTime\": \"2023-07-25T15:42:02.547Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\"], [\"A2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "28" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", "body": "{\"requests\": [{\"copyPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"pasteType\": \"PASTE_NORMAL\", \"pasteOrientation\": \"NORMAL\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "311" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21B1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "124" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\"\n ],\n [\n \"A2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", "body": "{\"requests\": [{\"cutPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"sheetId\": 0, \"rowIndex\": 0, \"columnIndex\": 2}, \"pasteType\": \"PASTE_NORMAL\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "231" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21C1%3AC2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "124" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C1:C2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\"\n ],\n [\n \"A2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_copy_cut_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:51 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\"], [\"A2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "28" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI:batchUpdate", "body": "{\"requests\": [{\"copyPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"pasteType\": \"PASTE_NORMAL\", \"pasteOrientation\": \"NORMAL\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "311" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21B1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "124" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\"\n ],\n [\n \"A2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI:batchUpdate", "body": "{\"requests\": [{\"cutPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"sheetId\": 0, \"rowIndex\": 0, \"columnIndex\": 2}, \"pasteType\": \"PASTE_NORMAL\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "231" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21A1%3AA2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21C1%3AC2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:17:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "124" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C1:C2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\"\n ],\n [\n \"A2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:55 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_delete_cols.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_delete_cols\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"createdTime\": \"2023-07-25T15:42:08.250Z\",\n \"modifiedTime\": \"2023-07-25T15:42:08.268Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_delete_cols 1\", \"test_delete_cols 2\", \"test_delete_cols 3\", \"test_delete_cols 4\"], [\"test_delete_cols 5\", \"test_delete_cols 6\", \"test_delete_cols 7\", \"test_delete_cols 8\"], [\"test_delete_cols 9\", \"test_delete_cols 10\", \"test_delete_cols 11\", \"test_delete_cols 12\"], [\"test_delete_cols 13\", \"test_delete_cols 14\", \"test_delete_cols 15\", \"test_delete_cols 16\"], [\"test_delete_cols 17\", \"test_delete_cols 18\", \"test_delete_cols 19\", \"test_delete_cols 20\"], [\"test_delete_cols 21\", \"test_delete_cols 22\", \"test_delete_cols 23\", \"test_delete_cols 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "567" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 1\",\n \"test_delete_cols 5\",\n \"test_delete_cols 9\",\n \"test_delete_cols 13\",\n \"test_delete_cols 17\",\n \"test_delete_cols 21\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"range\": \"Sheet1!D1:D1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 4\",\n \"test_delete_cols 8\",\n \"test_delete_cols 12\",\n \"test_delete_cols 16\",\n \"test_delete_cols 20\",\n \"test_delete_cols 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:14 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 1\",\n \"test_delete_cols 5\",\n \"test_delete_cols 9\",\n \"test_delete_cols 13\",\n \"test_delete_cols 17\",\n \"test_delete_cols 21\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:14 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 4\",\n \"test_delete_cols 8\",\n \"test_delete_cols 12\",\n \"test_delete_cols 16\",\n \"test_delete_cols 20\",\n \"test_delete_cols 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:15 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_delete_cols\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:17:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_delete_cols 1\", \"test_delete_cols 2\", \"test_delete_cols 3\", \"test_delete_cols 4\"], [\"test_delete_cols 5\", \"test_delete_cols 6\", \"test_delete_cols 7\", \"test_delete_cols 8\"], [\"test_delete_cols 9\", \"test_delete_cols 10\", \"test_delete_cols 11\", \"test_delete_cols 12\"], [\"test_delete_cols 13\", \"test_delete_cols 14\", \"test_delete_cols 15\", \"test_delete_cols 16\"], [\"test_delete_cols 17\", \"test_delete_cols 18\", \"test_delete_cols 19\", \"test_delete_cols 20\"], [\"test_delete_cols 21\", \"test_delete_cols 22\", \"test_delete_cols 23\", \"test_delete_cols 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "567" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 1\",\n \"test_delete_cols 5\",\n \"test_delete_cols 9\",\n \"test_delete_cols 13\",\n \"test_delete_cols 17\",\n \"test_delete_cols 21\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"range\": \"Sheet1!D1:D1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 4\",\n \"test_delete_cols 8\",\n \"test_delete_cols 12\",\n \"test_delete_cols 16\",\n \"test_delete_cols 20\",\n \"test_delete_cols 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 1\",\n \"test_delete_cols 5\",\n \"test_delete_cols 9\",\n \"test_delete_cols 13\",\n \"test_delete_cols 17\",\n \"test_delete_cols 21\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_delete_cols 4\",\n \"test_delete_cols 8\",\n \"test_delete_cols 12\",\n \"test_delete_cols 16\",\n \"test_delete_cols 20\",\n \"test_delete_cols 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:04 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_delete_protected_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_delete_protected_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:23 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"name\": \"Test WorksheetTest test_delete_protected_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:24 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_protected_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:24 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_protected_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:25 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE:batchUpdate", "body": "{\"requests\": [{\"addProtectedRange\": {\"protectedRange\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"description\": null, \"warningOnly\": false, \"requestingUserCanEdit\": false, \"editors\": {\"users\": [], \"groups\": []}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "281" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:25 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "447" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"replies\": [\n {\n \"addProtectedRange\": {\n \"protectedRange\": {\n \"protectedRangeId\": 2028942746,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"requestingUserCanEdit\": true,\n \"editors\": {}\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:25 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3794" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_protected_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"protectedRanges\": [\n {\n \"protectedRangeId\": 2028942746,\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n \"requestingUserCanEdit\": true,\n \"editors\": {\n \"users\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ]\n }\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE:batchUpdate", "body": "{\"requests\": [{\"deleteProtectedRange\": {\"protectedRangeId\": 2028942746}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "74" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:25 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 15 Mar 2024 15:59:26 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_protected_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 15 Mar 2024 15:59:26 GMT" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_delete_row.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_delete_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"createdTime\": \"2023-07-25T15:42:15.538Z\",\n \"modifiedTime\": \"2023-07-25T15:42:16.861Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 1\", \"test_delete_row 2\", \"test_delete_row 3\", \"test_delete_row 4\", \"test_delete_row 5\", \"test_delete_row 6\", \"test_delete_row 7\", \"test_delete_row 8\", \"test_delete_row 9\", \"test_delete_row 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "225" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 11\", \"test_delete_row 12\", \"test_delete_row 13\", \"test_delete_row 14\", \"test_delete_row 15\", \"test_delete_row 16\", \"test_delete_row 17\", \"test_delete_row 18\", \"test_delete_row 19\", \"test_delete_row 20\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 21\", \"test_delete_row 22\", \"test_delete_row 23\", \"test_delete_row 24\", \"test_delete_row 25\", \"test_delete_row 26\", \"test_delete_row 27\", \"test_delete_row 28\", \"test_delete_row 29\", \"test_delete_row 30\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 31\", \"test_delete_row 32\", \"test_delete_row 33\", \"test_delete_row 34\", \"test_delete_row 35\", \"test_delete_row 36\", \"test_delete_row 37\", \"test_delete_row 38\", \"test_delete_row 39\", \"test_delete_row 40\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 41\", \"test_delete_row 42\", \"test_delete_row 43\", \"test_delete_row 44\", \"test_delete_row 45\", \"test_delete_row 46\", \"test_delete_row 47\", \"test_delete_row 48\", \"test_delete_row 49\", \"test_delete_row 50\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 1\",\n \"test_delete_row 2\",\n \"test_delete_row 3\",\n \"test_delete_row 4\",\n \"test_delete_row 5\",\n \"test_delete_row 6\",\n \"test_delete_row 7\",\n \"test_delete_row 8\",\n \"test_delete_row 9\",\n \"test_delete_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A3%3A3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "368" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A3:Z3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 21\",\n \"test_delete_row 22\",\n \"test_delete_row 23\",\n \"test_delete_row 24\",\n \"test_delete_row 25\",\n \"test_delete_row 26\",\n \"test_delete_row 27\",\n \"test_delete_row 28\",\n \"test_delete_row 29\",\n \"test_delete_row 30\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "115" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 1\",\n \"test_delete_row 2\",\n \"test_delete_row 3\",\n \"test_delete_row 4\",\n \"test_delete_row 5\",\n \"test_delete_row 6\",\n \"test_delete_row 7\",\n \"test_delete_row 8\",\n \"test_delete_row 9\",\n \"test_delete_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "368" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 21\",\n \"test_delete_row 22\",\n \"test_delete_row 23\",\n \"test_delete_row 24\",\n \"test_delete_row 25\",\n \"test_delete_row 26\",\n \"test_delete_row 27\",\n \"test_delete_row 28\",\n \"test_delete_row 29\",\n \"test_delete_row 30\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_delete_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:06 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:07 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 1\", \"test_delete_row 2\", \"test_delete_row 3\", \"test_delete_row 4\", \"test_delete_row 5\", \"test_delete_row 6\", \"test_delete_row 7\", \"test_delete_row 8\", \"test_delete_row 9\", \"test_delete_row 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "225" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "266" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updates\": {\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 11\", \"test_delete_row 12\", \"test_delete_row 13\", \"test_delete_row 14\", \"test_delete_row 15\", \"test_delete_row 16\", \"test_delete_row 17\", \"test_delete_row 18\", \"test_delete_row 19\", \"test_delete_row 20\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 21\", \"test_delete_row 22\", \"test_delete_row 23\", \"test_delete_row 24\", \"test_delete_row 25\", \"test_delete_row 26\", \"test_delete_row 27\", \"test_delete_row 28\", \"test_delete_row 29\", \"test_delete_row 30\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 31\", \"test_delete_row 32\", \"test_delete_row 33\", \"test_delete_row 34\", \"test_delete_row 35\", \"test_delete_row 36\", \"test_delete_row 37\", \"test_delete_row 38\", \"test_delete_row 39\", \"test_delete_row 40\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 41\", \"test_delete_row 42\", \"test_delete_row 43\", \"test_delete_row 44\", \"test_delete_row 45\", \"test_delete_row 46\", \"test_delete_row 47\", \"test_delete_row 48\", \"test_delete_row 49\", \"test_delete_row 50\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "234" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "298" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 1\",\n \"test_delete_row 2\",\n \"test_delete_row 3\",\n \"test_delete_row 4\",\n \"test_delete_row 5\",\n \"test_delete_row 6\",\n \"test_delete_row 7\",\n \"test_delete_row 8\",\n \"test_delete_row 9\",\n \"test_delete_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A3%3A3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "368" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A3:Z3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 21\",\n \"test_delete_row 22\",\n \"test_delete_row 23\",\n \"test_delete_row 24\",\n \"test_delete_row 25\",\n \"test_delete_row 26\",\n \"test_delete_row 27\",\n \"test_delete_row 28\",\n \"test_delete_row 29\",\n \"test_delete_row 30\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "115" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "359" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 1\",\n \"test_delete_row 2\",\n \"test_delete_row 3\",\n \"test_delete_row 4\",\n \"test_delete_row 5\",\n \"test_delete_row 6\",\n \"test_delete_row 7\",\n \"test_delete_row 8\",\n \"test_delete_row 9\",\n \"test_delete_row 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "368" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_delete_row 21\",\n \"test_delete_row 22\",\n \"test_delete_row 23\",\n \"test_delete_row 24\",\n \"test_delete_row 25\",\n \"test_delete_row 26\",\n \"test_delete_row 27\",\n \"test_delete_row 28\",\n \"test_delete_row 29\",\n \"test_delete_row 30\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:12 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_find.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_find\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"createdTime\": \"2023-07-25T15:42:24.315Z\",\n \"modifiedTime\": \"2023-07-25T15:42:25.389Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "29" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "29" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "231" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1o_Otest_find 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "43" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "245" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1o_Otest_find 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "245" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1o_Otest_find 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"camelcase\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "27" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"CamelCase\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "27" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "227" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"camelcase\",\n \"CamelCase\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_find\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:16 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "29" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "29" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:18 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "231" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1o_Otest_find 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "43" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "245" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1o_Otest_find 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "245" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"test_find 1\",\n \"test_find 1o_Otest_find 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"camelcase\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "27" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"CamelCase\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "27" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "227" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"\",\n \"camelcase\",\n \"CamelCase\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_findall.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_findall\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "185" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"createdTime\": \"2023-07-25T15:42:32.272Z\",\n \"modifiedTime\": \"2023-07-25T15:42:33.028Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "59" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "212" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "439" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "437" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1t_Ttest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1i_Itest_findall 2\"], [\"test_findall 1r_Rtest_findall 2\"], [\"test_findall 1u_Utest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1j_Jtest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1w_Wtest_findall 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "382" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "609" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1t_Ttest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1i_Itest_findall 2\"\n ],\n [\n \"test_findall 1r_Rtest_findall 2\"\n ],\n [\n \"test_findall 1u_Utest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1j_Jtest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1w_Wtest_findall 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_findall\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "185" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3329" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "59" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "212" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:28 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "439" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:28 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "437" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ],\n [\n \"test_findall 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1d_Dtest_findall 2\"], [\"test_findall 1i_Itest_findall 2\"], [\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1q_Qtest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1i_Itest_findall 2\"], [\"test_findall 1n_Ntest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1b_Btest_findall 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "382" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "609" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1d_Dtest_findall 2\"\n ],\n [\n \"test_findall 1i_Itest_findall 2\"\n ],\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1q_Qtest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1i_Itest_findall 2\"\n ],\n [\n \"test_findall 1n_Ntest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1b_Btest_findall 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:30 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_format.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_format\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"createdTime\": \"2023-07-25T15:42:38.239Z\",\n \"modifiedTime\": \"2023-07-25T15:42:39.345Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c:batchUpdate", "body": "{\"requests\": [{\"repeatCell\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"cell\": {\"userEnteredFormat\": {\"backgroundColor\": {\"green\": 1, \"blue\": 1}, \"horizontalAlignment\": \"CENTER\", \"textFormat\": {\"foregroundColor\": {\"red\": 1, \"green\": 1}, \"fontSize\": 12, \"bold\": true}}}, \"fields\": \"userEnteredFormat(backgroundColor,horizontalAlignment,textFormat)\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "417" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "1140" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"userEnteredFormat\": {\n \"backgroundColor\": {\n \"green\": 1,\n \"blue\": 1\n },\n \"horizontalAlignment\": \"CENTER\",\n \"textFormat\": {\n \"foregroundColor\": {\n \"red\": 1,\n \"green\": 1\n },\n \"fontSize\": 12,\n \"bold\": true,\n \"foregroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1\n }\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"green\": 1,\n \"blue\": 1\n }\n }\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_format\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:32 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU:batchUpdate", "body": "{\"requests\": [{\"repeatCell\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"cell\": {\"userEnteredFormat\": {\"backgroundColor\": {\"green\": 1, \"blue\": 1}, \"horizontalAlignment\": \"CENTER\", \"textFormat\": {\"foregroundColor\": {\"red\": 1, \"green\": 1}, \"fontSize\": 12, \"bold\": true}}}, \"fields\": \"userEnteredFormat(backgroundColor,horizontalAlignment,textFormat)\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "417" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:34 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:34 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "1140" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"userEnteredFormat\": {\n \"backgroundColor\": {\n \"green\": 1,\n \"blue\": 1\n },\n \"horizontalAlignment\": \"CENTER\",\n \"textFormat\": {\n \"foregroundColor\": {\n \"red\": 1,\n \"green\": 1\n },\n \"fontSize\": 12,\n \"bold\": true,\n \"foregroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1\n }\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"green\": 1,\n \"blue\": 1\n }\n }\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:35 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_freeze.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_freeze\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"createdTime\": \"2023-07-25T15:42:44.454Z\",\n \"modifiedTime\": \"2023-07-25T15:42:44.470Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 2}}, \"fields\": \"gridProperties/frozenRowCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenColumnCount\": 1}}, \"fields\": \"gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "163" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3393" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 0, \"frozenColumnCount\": 0}}, \"fields\": \"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "214" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:42:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_freeze\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:37 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 2}}, \"fields\": \"gridProperties/frozenRowCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "157" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenColumnCount\": 1}}, \"fields\": \"gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "163" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3393" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 0, \"frozenColumnCount\": 0}}, \"fields\": \"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "214" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:18:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:18:41 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:08 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:08 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "249" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "249" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "249" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:11 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "249" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:11 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_different_header.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_different_header\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "123" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:13 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3354" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3354" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "155" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:15 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:15 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [],\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:15 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [],\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:16 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [],\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:16 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "265" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [],\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:16 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "121" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:18 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:19 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3352" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:19 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3352" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:19 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:20 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"faff\", \"C3\", \"faff\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "125" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:20 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:20 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "255" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\",\n \"C3\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:20 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "255" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\",\n \"C3\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:21 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "255" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\",\n \"C3\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:21 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "255" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\",\n \"C3\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:21 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "129" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:24 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "216" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:25 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:25 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:25 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:26 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:26 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"A\", \"\", \"C\", \"3_1_0\"], [\"=3/2\", 0.12, \"\", \"3_2_1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "66" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:26 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:27 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A\",\n \"\",\n \"C\",\n \"3_1_0\"\n ],\n [\n 1.5,\n 0.12,\n \"\",\n \"3_2_1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:27 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_pad_more_than_one_key.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_pad_more_than_one_key\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "128" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:31 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "215" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"name\": \"Test WorksheetTest test_get_all_records_pad_more_than_one_key\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:31 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_more_than_one_key\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:32 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_more_than_one_key\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:32 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:32 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27%21A1%3AD2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\"], [1, 2, 3, 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "64" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:33 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:33 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:33 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_pad_one_key.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_pad_one_key\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:37 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"name\": \"Test WorksheetTest test_get_all_records_pad_one_key\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:38 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_one_key\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:38 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3349" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_one_key\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:38 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:39 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27%21A1%3AD2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"C1\"], [1, 2, 3, 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "70" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:39 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 7\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:39 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "180" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"C1\"\n ],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:40 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_pad_values.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_pad_values\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:43 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "204" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"name\": \"Test WorksheetTest test_get_all_records_pad_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:43 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:43 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_pad_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:44 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:44 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27%21A1%3AC2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"C1\"], [1, 2]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "64" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:44 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\",\n \"updatedRange\": \"Sheet1!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 5\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:44 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "158" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"C1\"\n ],\n [\n \"1\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:45 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_value_render_options\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "127" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:48 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "214" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:48 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:48 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:49 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:49 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:49 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "84" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:50 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:50 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"2020-01-01\",\n \"string\",\n \"53\"\n ],\n [\n \"1.5\",\n \"0.12\",\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:50 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n 2,\n 43831,\n \"string\",\n 53\n ],\n [\n 1.5,\n 0.12,\n 36162\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:51 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"=4/2\",\n 43831,\n \"string\",\n 53\n ],\n [\n \"=3/2\",\n 0.12,\n 36162\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:51 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_with_all_values_blank.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_with_all_values_blank\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "128" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:55 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "215" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"name\": \"Test WorksheetTest test_get_all_records_with_all_values_blank\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:55 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_all_values_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:56 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3359" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_all_values_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:56 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:56 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"a\", \"b\", \"c\", \"d\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:57 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:39:57 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "132" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"a\",\n \"b\",\n \"c\",\n \"d\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:39:58 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_with_blank_final_headers.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_with_blank_final_headers\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "131" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:02 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "218" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"name\": \"Test WorksheetTest test_get_all_records_with_blank_final_headers\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:02 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3362" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_blank_final_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:02 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3362" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_blank_final_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:03 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:03 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"faff\", \"\", \"\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:03 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:04 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "229" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:04 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "229" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"faff\"\n ],\n [\n \"1\",\n \"b2\",\n \"1.45\"\n ],\n [],\n [\n \"A4\",\n \"0.4\",\n \"\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:40:05 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_with_keys_blank.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_with_keys_blank\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "122" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:08 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"name\": \"Test WorksheetTest test_get_all_records_with_keys_blank\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3353" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_keys_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3353" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_keys_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:09 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"c\", \"d\", \"e\", \"f\"], [\"g\", \"h\", \"i\", \"j\"], [\"k\", \"l\", \"m\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:10 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:11 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "241" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"c\",\n \"d\",\n \"e\",\n \"f\"\n ],\n [\n \"g\",\n \"h\",\n \"i\",\n \"j\"\n ],\n [\n \"k\",\n \"l\",\n \"m\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:11 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "241" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [],\n [\n \"c\",\n \"d\",\n \"e\",\n \"f\"\n ],\n [\n \"g\",\n \"h\",\n \"i\",\n \"j\"\n ],\n [\n \"k\",\n \"l\",\n \"m\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:40:12 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_records_with_some_values_blank.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_records_with_some_values_blank\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "129" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:14 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "216" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"name\": \"Test WorksheetTest test_get_all_records_with_some_values_blank\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_some_values_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:14 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_with_some_values_blank\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:15 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:15 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"a\", \"b\", \"c\", \"d\"], [\"x\", \"y\", \"z\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "151" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:16 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Fri, 29 Dec 2023 18:40:16 GMT" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "content-length": [ "177" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"a\",\n \"b\",\n \"c\",\n \"d\"\n ],\n [\n \"x\",\n \"y\",\n \"z\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ], "Date": [ "Fri, 29 Dec 2023 18:40:16 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_values.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"createdTime\": \"2023-07-25T15:43:35.200Z\",\n \"modifiedTime\": \"2023-07-25T15:43:35.216Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A3:D3\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A4:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "234" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A3:D3\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A4:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "234" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "227" ] }, "body": { "string": "{\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"createdTime\": \"2023-07-25T15:43:43.300Z\",\n \"modifiedTime\": \"2023-07-25T15:43:44.232Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "84" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n 2,\n 43831,\n \"string\",\n 53\n ],\n [\n 1.5,\n 0.12,\n 36162\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n 2,\n \"2020-01-01\",\n \"string\",\n 53\n ],\n [\n 1.5,\n 0.12,\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"2020-01-01\",\n \"string\",\n \"53\"\n ],\n [\n \"1.5\",\n \"0.12\",\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"2020-01-01\",\n \"string\",\n \"53\"\n ],\n [\n \"1.5\",\n \"0.12\",\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "84" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n 2,\n 43831,\n \"string\",\n 53\n ],\n [\n 1.5,\n 0.12,\n 36162\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n 2,\n \"2020-01-01\",\n \"string\",\n 53\n ],\n [\n 1.5,\n 0.12,\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"2020-01-01\",\n \"string\",\n \"53\"\n ],\n [\n \"1.5\",\n \"0.12\",\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"2020-01-01\",\n \"string\",\n \"53\"\n ],\n [\n \"1.5\",\n \"0.12\",\n \"1999-01-02\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:41 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "213" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "223" ] }, "body": { "string": "{\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"createdTime\": \"2023-07-25T15:43:50.075Z\",\n \"modifiedTime\": \"2023-07-25T15:43:51.247Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"D3\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "107" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A1:D1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A2:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A3:D3\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A4:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"d4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "167" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "232" ] }, "body": { "string": "{\n \"range\": \"'D3'!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"d4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:43:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:44 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "213" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"D3\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "107" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A1:D1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A2:D2\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A3:D3\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "56" ] }, "body": { "string": "{\n \"range\": \"'D3'!A4:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"d4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "167" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:19:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "232" ] }, "body": { "string": "{\n \"range\": \"'D3'!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"d4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_and_get_values_have_same_signature.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_and_get_values_have_same_signature\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "129" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 19 Oct 2023 11:31:46 GMT" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "216" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho\",\n \"name\": \"Test WorksheetTest test_get_and_get_values_have_same_signature\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Thu, 19 Oct 2023 11:31:46 GMT" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_and_get_values_have_same_signature\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Thu, 19 Oct 2023 11:31:47 GMT" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_and_get_values_have_same_signature\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Thu, 19 Oct 2023 11:31:48 GMT" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Date": [ "Thu, 19 Oct 2023 11:31:49 GMT" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_merge_cells_and_unmerge_cells.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "124" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:39 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "content-length": [ "211" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"name\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:39 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3355" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:40 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3355" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:40 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:41 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"2\", \"3\"], [\"\", \"\", \"\", \"\"], [\"\", \"4\", \"\", \"\"], [\"\", \"5\", \"\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "89" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:41 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:42 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_COLUMNS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "169" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:42 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 2, \"endRowIndex\": 4, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "166" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:42 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:43 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"\",\n \"2\",\n \"3\"\n ],\n [],\n [\n \"\",\n \"4\"\n ],\n [\n \"\",\n \"5\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:43 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "4087" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 3,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n },\n {\n \"startRowIndex\": 3,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 4, \"startColumnIndex\": 0, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "141" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:44 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:44 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"\",\n \"2\",\n \"3\"\n ],\n [],\n [\n \"\",\n \"4\"\n ],\n [\n \"\",\n \"5\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:44 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3351" ] }, "body": { "string": "{\n \"spreadsheetId\": \"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Sat, 30 Dec 2023 18:22:45 GMT" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_notes.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_notes\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "100" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:43 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "187" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"name\": \"Test WorksheetTest test_get_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:43 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:44 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:45 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:45 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3331" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:46 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"read my note\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"Or don't\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 2, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"another note\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 2, \"endRowIndex\": 3, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"test\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "778" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:47 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "121" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\",\n \"replies\": [\n {},\n {},\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27%21A2%3AC3", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:47 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "514" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {},\n {\n \"note\": \"Or don't\"\n }\n ]\n },\n {\n \"values\": [\n {\n \"note\": \"another note\"\n },\n {},\n {\n \"note\": \"test\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:48 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "662" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"read my note\"\n }\n ]\n },\n {\n \"values\": [\n {},\n {\n \"note\": \"Or don't\"\n }\n ]\n },\n {\n \"values\": [\n {\n \"note\": \"another note\"\n },\n {},\n {\n \"note\": \"test\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:48 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_notes_2nd_sheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_notes_2nd_sheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:44 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"name\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:45 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:46 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:47 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 3, \"columnCount\": 3}}}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "144" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:48 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "381" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 367780790,\n \"title\": \"worksheet 2\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 3,\n \"columnCount\": 3\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:48 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 367780790}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"the first time\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 2, \"endRowIndex\": 3, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 367780790}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"two sheets\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "418" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:49 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:50 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "444" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"the first time\"\n }\n ]\n },\n {},\n {\n \"values\": [\n {},\n {\n \"note\": \"two sheets\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27%21A2%3AC3", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:50 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "294" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {},\n {\n \"values\": [\n {},\n {\n \"note\": \"two sheets\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 07 Oct 2024 19:27:51 GMT" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_notes_2nd_sheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:50 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"name\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:54 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:55 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_notes_2nd_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:56 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 3, \"columnCount\": 3}}}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "144" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:56 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "382" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1690535305,\n \"title\": \"worksheet 2\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 3,\n \"columnCount\": 3\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:57 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 1690535305}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"the first time\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 2, \"endRowIndex\": 3, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 1690535305}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"two sheets\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "420" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:58 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:59 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "444" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"the first time\"\n }\n ]\n },\n {},\n {\n \"values\": [\n {},\n {\n \"note\": \"two sheets\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27%21A2%3AC3", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:28:59 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "294" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {},\n {\n \"values\": [\n {},\n {\n \"note\": \"two sheets\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.32.3" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Date": [ "Mon, 07 Oct 2024 19:29:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_returns_ValueRange_with_metadata.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "127" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "content-length": [ "214" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "content-length": [ "224" ] }, "body": { "string": "{\n \"id\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"createdTime\": \"2023-10-19T15:48:57.377Z\",\n \"modifiedTime\": \"2023-10-19T15:48:57.399Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:01 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:01 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:02 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:02 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Thu, 19 Oct 2023 15:49:03 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/html" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Thu, 19 Oct 2023 15:49:03 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "127" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:08 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "content-length": [ "214" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:09 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:09 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "content-length": [ "224" ] }, "body": { "string": "{\n \"id\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"name\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"createdTime\": \"2023-10-19T15:49:06.246Z\",\n \"modifiedTime\": \"2023-10-19T15:49:06.267Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:09 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3358" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_returns_ValueRange_with_metadata\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:10 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:10 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:10 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:11 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Thu, 19 Oct 2023 15:49:11 GMT" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "126" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:02 GMT" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "213" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:02 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:03 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:04 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:04 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:04 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:05 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:06 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 2, \"endRowIndex\": 4, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:07 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:07 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:08 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:08 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3805" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:08 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "248" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"\",\n \"\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Mon, 20 Nov 2023 12:32:08 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3805" ] }, "body": { "string": "{\n \"spreadsheetId\": \"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Mon, 20 Nov 2023 12:32:09 GMT" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_and_maintain_size.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_and_maintain_size\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Sat, 28 Oct 2023 11:31:13 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"name\": \"Test WorksheetTest test_get_values_and_maintain_size\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:14 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "3350" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_maintain_size\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:14 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "3350" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_maintain_size\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:14 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 5, \"columnCount\": 5}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:15 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27%21A1%3AE5?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"\", \"\", \"\"], [\"3\", \"4\", \"\", \"\", \"\"], [\"5\", \"6\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\", \"\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "152" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:15 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\",\n \"updatedRange\": \"Sheet1!A1:E5\",\n \"updatedRows\": 5,\n \"updatedColumns\": 5,\n \"updatedCells\": 25\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Date": [ "Sat, 28 Oct 2023 11:31:15 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], "content-length": [ "178" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"3\",\n \"4\"\n ],\n [\n \"5\",\n \"6\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Sat, 28 Oct 2023 11:31:16 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_can_emulate_get_with_kwargs.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_can_emulate_get_with_kwargs\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "129" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:54 GMT" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "216" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"name\": \"Test WorksheetTest test_get_values_can_emulate_get_with_kwargs\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:54 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_can_emulate_get_with_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:55 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_can_emulate_get_with_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:55 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 31 Oct 2023 11:18:57 GMT" ], "Vary": [ "Origin, X-Origin" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_merge_cells_from_centre_of_sheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "134" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Wed, 25 Oct 2023 12:40:10 GMT" ], "Pragma": [ "no-cache" ], "content-length": [ "221" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:11 GMT" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:11 GMT" ], "content-length": [ "3365" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:12 GMT" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:12 GMT" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27%21A1%3AC4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\"], [\"down\", \"up\", \"\"], [\"\", \"\", \"2\"], [\"num\", \"val\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "84" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:13 GMT" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"updatedRange\": \"Sheet1!A1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 3,\n \"updatedCells\": 12\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:13 GMT" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:13 GMT" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27%21B1%3AC3", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:14 GMT" ], "content-length": [ "167" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:C3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"4\"\n ],\n [\n \"up\"\n ],\n [\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Date": [ "Wed, 25 Oct 2023 12:40:14 GMT" ], "content-length": [ "3671" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 3\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Type": [ "text/html" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Wed, 25 Oct 2023 12:40:15 GMT" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_merge_cells_outside_of_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:30 GMT" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:31 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:31 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:31 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:32 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\", \"\"], [\"down\", \"\", \"\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:32 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:32 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:32 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:33 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "136" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"down\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:33 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "136" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"down\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Server": [ "ESF" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:33 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3667" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "Server": [ "ESF" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Date": [ "Tue, 12 Sep 2023 13:25:34 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:16 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\", \"\"], [\"down\", \"\", \"\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27%21A1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "136" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"down\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3667" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:27:20 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Vary": [ "Origin, X-Origin" ], "Pragma": [ "no-cache" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:16 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:17 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:17 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:18 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:18 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\", \"\"], [\"down\", \"\", \"\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:18 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:19 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:19 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27%21A1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:19 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "136" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"down\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:19 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "content-length": [ "3667" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 12 Sep 2023 13:34:20 GMT" ], "Content-Type": [ "text/html" ], "X-XSS-Protection": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Length": [ "0" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:55 GMT" ], "X-XSS-Protection": [ "0" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:55 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:56 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:56 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:56 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\", \"\"], [\"down\", \"\", \"\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "99" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:57 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:57 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:57 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27%21A1%3AB2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:57 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "136" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:B2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\",\n \"2\"\n ],\n [\n \"down\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:58 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "content-length": [ "3667" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Tue, 12 Sep 2023 13:39:58 GMT" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ "ESF" ], "X-Content-Type-Options": [ "nosniff" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:19 GMT" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:19 GMT" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:20 GMT" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:20 GMT" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:21 GMT" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys/values/%27Sheet1%27%21%5B%5B%271%27%2C%20%272%27%2C%20%274%27%2C%20%27%27%5D%2C%20%5B%27down%27%2C%20%27%27%2C%20%27%27%2C%20%27%27%5D%2C%20%5B%27%27%2C%20%27%27%2C%20%272%27%2C%20%27%27%5D%2C%20%5B%27num%27%2C%20%27val%27%2C%20%27%27%2C%20%270%27%5D%5D?valueInputOption=RAW", "body": "{\"values\": \"A1:D4\", \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "43" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 400, "message": "Bad Request" }, "headers": { "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:21 GMT" ], "content-length": [ "499" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"A1:D4\\\"\",\n \"status\": \"INVALID_ARGUMENT\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.BadRequest\",\n \"fieldViolations\": [\n {\n \"field\": \"data.values\",\n \"description\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"A1:D4\\\"\"\n }\n ]\n }\n ]\n }\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Thu, 19 Oct 2023 10:48:22 GMT" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Thu, 19 Oct 2023 10:49:17 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Thu, 19 Oct 2023 10:49:17 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Thu, 19 Oct 2023 10:49:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_outside_of_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Thu, 19 Oct 2023 10:49:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Thu, 19 Oct 2023 10:49:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE/values/%27Sheet1%27%21%5B%5B%271%27%2C%20%272%27%2C%20%274%27%2C%20%27%27%5D%2C%20%5B%27down%27%2C%20%27%27%2C%20%27%27%2C%20%27%27%5D%2C%20%5B%27%27%2C%20%27%27%2C%20%272%27%2C%20%27%27%5D%2C%20%5B%27num%27%2C%20%27val%27%2C%20%27%27%2C%20%270%27%5D%5D?valueInputOption=RAW", "body": "{\"values\": \"A1:D4\", \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "43" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 400, "message": "Bad Request" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "Date": [ "Thu, 19 Oct 2023 10:49:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "content-length": [ "499" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"A1:D4\\\"\",\n \"status\": \"INVALID_ARGUMENT\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.BadRequest\",\n \"fieldViolations\": [\n {\n \"field\": \"data.values\",\n \"description\": \"Invalid value at 'data.values' (type.googleapis.com/google.protobuf.ListValue), \\\"A1:D4\\\"\"\n }\n ]\n }\n ]\n }\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Server": [ "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Thu, 19 Oct 2023 10:49:19 GMT" ], "Content-Type": [ "text/html" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_merge_cells_with_named_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_merge_cells_with_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "130" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:30 GMT" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "217" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"name\": \"Test WorksheetTest test_get_values_merge_cells_with_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:30 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_with_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:31 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3361" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_with_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:32 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:32 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27%21A1%3AC4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"2\", \"4\"], [\"down\", \"up\", \"\"], [\"\", \"\", \"2\"], [\"num\", \"val\", \"\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "84" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:32 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"updatedRange\": \"Sheet1!A1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 3,\n \"updatedCells\": 12\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 3, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:33 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "165" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:34 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"NamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 3, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "180" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:35 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "403" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1827042098\",\n \"name\": \"NamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27%21NamedRange", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:36 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "167" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:C3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2\",\n \"4\"\n ],\n [\n \"up\"\n ],\n [\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:36 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3905" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_merge_cells_with_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 3\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 1\n },\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1827042098\",\n \"name\": \"NamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 3,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ "Mon, 20 Nov 2023 12:30:37 GMT" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_returns_padded_get_as_listoflists.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_returns_padded_get_as_listoflists\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "135" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "222" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"name\": \"Test WorksheetTest test_get_values_returns_padded_get_as_listoflists\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3366" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_returns_padded_get_as_listoflists\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:20 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3366" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_returns_padded_get_as_listoflists\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:21 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:21 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"2\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:22 GMT" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:22 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:22 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [],\n [],\n [\n \"\",\n \"\",\n \"\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Sat, 28 Oct 2023 21:19:23 GMT" ], "Content-Type": [ "text/html" ], "Pragma": [ "no-cache" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "121" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Sun, 13 Aug 2023 08:24:46 GMT" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:46 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3352" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Sun, 13 Aug 2023 08:24:47 GMT" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "218" ] }, "body": { "string": "{\n \"id\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"createdTime\": \"2023-08-13T08:24:44.018Z\",\n \"modifiedTime\": \"2023-08-13T08:24:44.038Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:47 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3352" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:47 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:47 GMT" ], "X-XSS-Protection": [ "0" ], "x-l2-request-path": [ "l2-managed-6" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"x\", \"y\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "124" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:48 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:48 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"x\",\n \"y\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "Cache-Control": [ "private" ], "Date": [ "Sun, 13 Aug 2023 08:24:48 GMT" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"1\"\n ],\n [\n \"x\",\n \"y\",\n \"title\"\n ],\n [\n \"\",\n \"\",\n \"2\"\n ],\n [\n \"num\",\n \"val\",\n \"\",\n \"0\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ "Sun, 13 Aug 2023 08:24:49 GMT" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_group_columns.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_group_columns\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:08 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:09 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:09 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"createdTime\": \"2023-07-25T15:44:05.696Z\",\n \"modifiedTime\": \"2023-07-25T15:44:05.724Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:09 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3577" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "123" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3378" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_group_columns\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:19:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "360" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3577" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "123" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3378" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:06 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_group_rows.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_group_rows\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:14 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:15 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"createdTime\": \"2023-07-25T15:44:12.380Z\",\n \"modifiedTime\": \"2023-07-25T15:44:13.589Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3565" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3372" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_group_rows\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "357" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3565" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "135" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3372" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:12 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_hide_columns_rows.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_columns_rows\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "108" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "205" ] }, "body": { "string": "{\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"createdTime\": \"2023-07-25T15:44:19.082Z\",\n \"modifiedTime\": \"2023-07-25T15:44:19.814Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "192" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "193" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "189" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:24 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_columns_rows\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "108" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:15 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "195" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3339" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "192" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "193" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "189" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:18 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_hide_gridlines.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_gridlines\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"createdTime\": \"2023-07-25T15:44:24.967Z\",\n \"modifiedTime\": \"2023-07-25T15:44:26.032Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "158" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3369" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_gridlines\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "158" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3369" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_hide_show_worksheet.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_show_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"createdTime\": \"2023-07-25T15:44:30.988Z\",\n \"modifiedTime\": \"2023-07-25T15:44:31.010Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 400, "message": "Bad Request" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "177" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Invalid requests[0].updateSheetProperties: You can't hide all the sheets in a document.\",\n \"status\": \"INVALID_ARGUMENT\"\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"you cannot see me\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 2}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "150" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "388" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3592" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3616" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": false}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "119" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3592" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_hide_show_worksheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 400, "message": "Bad Request" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "177" ] }, "body": { "string": "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Invalid requests[0].updateSheetProperties: You can't hide all the sheets in a document.\",\n \"status\": \"INVALID_ARGUMENT\"\n }\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"you cannot see me\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 2}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "150" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "387" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 940685769,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3591" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 940685769,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 940685769, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3615" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 940685769,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 940685769, \"hidden\": false}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "118" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3591" ] }, "body": { "string": "{\n \"spreadsheetId\": \"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 940685769,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:33 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_insert_cols.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_insert_cols\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"createdTime\": \"2023-07-25T15:44:38.933Z\",\n \"modifiedTime\": \"2023-07-25T15:44:38.946Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_cols 1\", \"test_insert_cols 2\", \"test_insert_cols 3\", \"test_insert_cols 4\"], [\"test_insert_cols 5\", \"test_insert_cols 6\", \"test_insert_cols 7\", \"test_insert_cols 8\"], [\"test_insert_cols 9\", \"test_insert_cols 10\", \"test_insert_cols 11\", \"test_insert_cols 12\"], [\"test_insert_cols 13\", \"test_insert_cols 14\", \"test_insert_cols 15\", \"test_insert_cols 16\"], [\"test_insert_cols 17\", \"test_insert_cols 18\", \"test_insert_cols 19\", \"test_insert_cols 20\"], [\"test_insert_cols 21\", \"test_insert_cols 22\", \"test_insert_cols 23\", \"test_insert_cols 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "567" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "146" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"COLUMNS\", \"values\": [[\"test_insert_cols 25\", \"test_insert_cols 26\", \"test_insert_cols 27\", \"test_insert_cols 28\"], [\"test_insert_cols 29\", \"test_insert_cols 30\", \"test_insert_cols 31\", \"test_insert_cols 32\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "229" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updates\": {\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_insert_cols 25\",\n \"test_insert_cols 26\",\n \"test_insert_cols 27\",\n \"test_insert_cols 28\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C1:C1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_insert_cols 29\",\n \"test_insert_cols 30\",\n \"test_insert_cols 31\",\n \"test_insert_cols 32\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_insert_cols\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:36 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:36 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_cols 1\", \"test_insert_cols 2\", \"test_insert_cols 3\", \"test_insert_cols 4\"], [\"test_insert_cols 5\", \"test_insert_cols 6\", \"test_insert_cols 7\", \"test_insert_cols 8\"], [\"test_insert_cols 9\", \"test_insert_cols 10\", \"test_insert_cols 11\", \"test_insert_cols 12\"], [\"test_insert_cols 13\", \"test_insert_cols 14\", \"test_insert_cols 15\", \"test_insert_cols 16\"], [\"test_insert_cols 17\", \"test_insert_cols 18\", \"test_insert_cols 19\", \"test_insert_cols 20\"], [\"test_insert_cols 21\", \"test_insert_cols 22\", \"test_insert_cols 23\", \"test_insert_cols 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "567" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "146" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"COLUMNS\", \"values\": [[\"test_insert_cols 25\", \"test_insert_cols 26\", \"test_insert_cols 27\", \"test_insert_cols 28\"], [\"test_insert_cols 29\", \"test_insert_cols 30\", \"test_insert_cols 31\", \"test_insert_cols 32\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "229" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"updates\": {\n \"spreadsheetId\": \"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1:B1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_insert_cols 25\",\n \"test_insert_cols 26\",\n \"test_insert_cols 27\",\n \"test_insert_cols 28\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"range\": \"Sheet1!C1:C1000\",\n \"majorDimension\": \"COLUMNS\",\n \"values\": [\n [\n \"test_insert_cols 29\",\n \"test_insert_cols 30\",\n \"test_insert_cols 31\",\n \"test_insert_cols 32\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:39 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_insert_row.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_insert_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:47 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"createdTime\": \"2023-07-25T15:44:46.181Z\",\n \"modifiedTime\": \"2023-07-25T15:44:46.850Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_row 1\", \"test_insert_row 2\", \"test_insert_row 3\", \"test_insert_row 4\"], [\"test_insert_row 5\", \"test_insert_row 6\", \"test_insert_row 7\", \"test_insert_row 8\"], [\"test_insert_row 9\", \"test_insert_row 10\", \"test_insert_row 11\", \"test_insert_row 12\"], [\"test_insert_row 13\", \"test_insert_row 14\", \"test_insert_row 15\", \"test_insert_row 16\"], [\"test_insert_row 17\", \"test_insert_row 18\", \"test_insert_row 19\", \"test_insert_row 20\"], [\"test_insert_row 21\", \"test_insert_row 22\", \"test_insert_row 23\", \"test_insert_row 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "543" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "143" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 25\", \"test_insert_row 26\", \"test_insert_row 27\", \"test_insert_row 28\", \"test_insert_row 29\", \"test_insert_row 30\", \"test_insert_row 31\", \"test_insert_row 32\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "216" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "312" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_insert_row 25\",\n \"test_insert_row 26\",\n \"test_insert_row 27\",\n \"test_insert_row 28\",\n \"test_insert_row 29\",\n \"test_insert_row 30\",\n \"test_insert_row 31\",\n \"test_insert_row 32\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=1+1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 1}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "143" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 33\", \"test_insert_row 34\", \"test_insert_row 35\", \"test_insert_row 36\", \"test_insert_row 37\", \"test_insert_row 38\", \"test_insert_row 39\", \"test_insert_row 40\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "216" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "99" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"=1+1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_insert_row\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "101" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:42 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "188" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3332" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_row 1\", \"test_insert_row 2\", \"test_insert_row 3\", \"test_insert_row 4\"], [\"test_insert_row 5\", \"test_insert_row 6\", \"test_insert_row 7\", \"test_insert_row 8\"], [\"test_insert_row 9\", \"test_insert_row 10\", \"test_insert_row 11\", \"test_insert_row 12\"], [\"test_insert_row 13\", \"test_insert_row 14\", \"test_insert_row 15\", \"test_insert_row 16\"], [\"test_insert_row 17\", \"test_insert_row 18\", \"test_insert_row 19\", \"test_insert_row 20\"], [\"test_insert_row 21\", \"test_insert_row 22\", \"test_insert_row 23\", \"test_insert_row 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "543" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "143" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 25\", \"test_insert_row 26\", \"test_insert_row 27\", \"test_insert_row 28\", \"test_insert_row 29\", \"test_insert_row 30\", \"test_insert_row 31\", \"test_insert_row 32\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "216" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updates\": {\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "312" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2:Z2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_insert_row 25\",\n \"test_insert_row 26\",\n \"test_insert_row 27\",\n \"test_insert_row 28\",\n \"test_insert_row 29\",\n \"test_insert_row 30\",\n \"test_insert_row 31\",\n \"test_insert_row 32\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=1+1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 1}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "143" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 33\", \"test_insert_row 34\", \"test_insert_row 35\", \"test_insert_row 36\", \"test_insert_row 37\", \"test_insert_row 38\", \"test_insert_row 39\", \"test_insert_row 40\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "216" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "264" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updates\": {\n \"spreadsheetId\": \"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:46 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "99" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B3\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"=1+1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:47 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"createdTime\": \"2023-07-25T15:44:52.938Z\",\n \"modifiedTime\": \"2023-07-25T15:44:52.954Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A5\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A5\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:44:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "96" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:51 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "183" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3327" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A5\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:53 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A5\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:54 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_range_get_all_values.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_get_all_values\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"createdTime\": \"2023-07-25T15:44:58.736Z\",\n \"modifiedTime\": \"2023-07-25T15:44:58.754Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:03 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:03 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:04 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"Hi\", \"Mom\", \"\"], [\"My\", \"Name\", \"is\", \"bon\"], [\"\", \"\", \"\", \"\"], [\"1\", \"2\", \"3\", \"4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:04 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Hi\",\n \"Mom\"\n ],\n [\n \"My\",\n \"Name\",\n \"is\",\n \"bon\"\n ],\n [],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Hi\",\n \"Mom\"\n ],\n [\n \"My\",\n \"Name\",\n \"is\",\n \"bon\"\n ],\n [],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_get_all_values\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:20:56 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:57 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:57 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"Hi\", \"Mom\", \"\"], [\"My\", \"Name\", \"is\", \"bon\"], [\"\", \"\", \"\", \"\"], [\"1\", \"2\", \"3\", \"4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:58 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Hi\",\n \"Mom\"\n ],\n [\n \"My\",\n \"Name\",\n \"is\",\n \"bon\"\n ],\n [],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:20:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "250" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Hi\",\n \"Mom\"\n ],\n [\n \"My\",\n \"Name\",\n \"is\",\n \"bon\"\n ],\n [],\n [\n \"1\",\n \"2\",\n \"3\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:00 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_range_reversed.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_reversed\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:09 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"createdTime\": \"2023-07-25T15:45:07.019Z\",\n \"modifiedTime\": \"2023-07-25T15:45:07.042Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21D4%3AA1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_reversed\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:03 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27%21D4%3AA1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:05 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:06 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_range_unbounded.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_unbounded\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:15 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:15 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:15 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "203" ] }, "body": { "string": "{\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"createdTime\": \"2023-07-25T15:45:12.881Z\",\n \"modifiedTime\": \"2023-07-25T15:45:12.896Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC1000", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_range_unbounded\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27%21A1%3AC", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27%21A1%3AC1000", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "61" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C1000\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_reorder_worksheets.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_reorder_worksheets\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:20 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "206" ] }, "body": { "string": "{\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"createdTime\": \"2023-07-25T15:45:18.649Z\",\n \"modifiedTime\": \"2023-07-25T15:45:19.476Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:21 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_reorder_worksheets\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "109" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:14 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "196" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:17 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3340" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_resize.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_resize\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:26 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"createdTime\": \"2023-07-25T15:45:23.965Z\",\n \"modifiedTime\": \"2023-07-25T15:45:23.985Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1010}}, \"fields\": \"gridProperties/rowCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "148" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"columnCount\": 36}}, \"fields\": \"gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "152" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1000, \"columnCount\": 26}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "194" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_resize\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "97" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "184" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:22 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1010}}, \"fields\": \"gridProperties/rowCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "148" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"columnCount\": 36}}, \"fields\": \"gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "152" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:23 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1000, \"columnCount\": 26}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "194" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:24 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3328" ] }, "body": { "string": "{\n \"spreadsheetId\": \"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_set_tab_color.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_set_tab_color\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "104" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:12 GMT" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "191" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"name\": \"Test WorksheetTest test_set_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_set_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "201" ] }, "body": { "string": "{\n \"id\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"name\": \"Test WorksheetTest test_set_tab_color\",\n \"createdTime\": \"2023-08-13T10:27:09.876Z\",\n \"modifiedTime\": \"2023-08-13T10:27:09.889Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "3335" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_set_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1.0, \"green\": 0.0, \"blue\": 0.4980392156862745}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "187" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "x-l2-request-path": [ "l2-managed-6" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "X-Content-Type-Options": [ "nosniff" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "private" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {\n \"tabColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"blue\": 0.49803922\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Date": [ "Sun, 13 Aug 2023 10:27:15 GMT" ], "Content-Length": [ "0" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Server": [ "ESF" ], "Content-Type": [ "text/html" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_show_gridlines.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_show_gridlines\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"createdTime\": \"2023-07-25T15:45:32.039Z\",\n \"modifiedTime\": \"2023-07-25T15:45:32.749Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "158" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": false}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "159" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:37 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_show_gridlines\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:29 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:29 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:30 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "158" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": false}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "159" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:32 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_sort.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_sort\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"createdTime\": \"2023-07-25T15:45:37.677Z\",\n \"modifiedTime\": \"2023-07-25T15:45:38.519Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", "body": "{\"values\": [[\"Apple\", \"2012\", \"4\"], [\"Banana\", \"2013\", \"3\"], [\"Canada\", \"2007\", \"1\"], [\"Dinosaur\", \"2013\", \"6\"], [\"Elephant\", \"2019\", \"2\"], [\"Fox\", \"2077\", \"5\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "162" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "202" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 0, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "203" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:42 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 1, \"sortOrder\": \"ASCENDING\"}, {\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "251" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "202" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 1, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "203" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_sort\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "95" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "182" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3326" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "190" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27%21A1%3AC6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", "body": "{\"values\": [[\"Apple\", \"2012\", \"4\"], [\"Banana\", \"2013\", \"3\"], [\"Canada\", \"2007\", \"1\"], [\"Dinosaur\", \"2013\", \"6\"], [\"Elephant\", \"2019\", \"2\"], [\"Fox\", \"2077\", \"5\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "162" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "202" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 0, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "203" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 1, \"sortOrder\": \"ASCENDING\"}, {\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "251" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:40 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "202" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:41 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ]\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 1, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "203" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:42 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "394" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:C6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Canada\",\n \"2007\",\n \"1\"\n ],\n [\n \"Dinosaur\",\n \"2013\",\n \"6\"\n ],\n [\n \"Fox\",\n \"2077\",\n \"5\"\n ],\n [\n \"Apple\",\n \"2012\",\n \"4\"\n ],\n [\n \"Banana\",\n \"2013\",\n \"3\"\n ],\n [\n \"Elephant\",\n \"2019\",\n \"2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:43 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_acell.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_acell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:48 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"createdTime\": \"2023-07-25T15:45:45.745Z\",\n \"modifiedTime\": \"2023-07-25T15:45:45.759Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:49 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_acell 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "37" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:50 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_acell 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:51 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_acell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:46 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:47 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_acell 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "37" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:48 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:49 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_acell 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_acell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Date": [ "Thu, 28 Sep 2023 22:04:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Date": [ "Thu, 28 Sep 2023 22:04:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Date": [ "Thu, 28 Sep 2023 22:04:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Date": [ "Thu, 28 Sep 2023 22:04:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_acell 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "37" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Date": [ "Thu, 28 Sep 2023 22:04:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Server": [ "ESF" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Date": [ "Thu, 28 Sep 2023 22:04:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Transfer-Encoding": [ "chunked" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "content-length": [ "114" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_acell 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Date": [ "Thu, 28 Sep 2023 22:04:14 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ "0" ], "Pragma": [ "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_and_get.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_and_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "202" ] }, "body": { "string": "{\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"createdTime\": \"2023-07-25T15:45:51.494Z\",\n \"modifiedTime\": \"2023-07-25T15:45:52.276Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "234" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_and_get\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "105" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:53 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "192" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:54 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3336" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "98" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:55 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:56 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "234" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:56 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cell.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"createdTime\": \"2023-07-25T15:45:56.128Z\",\n \"modifiedTime\": \"2023-07-25T15:45:56.169Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:45:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "36" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "113" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cell 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "18" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"0042\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42.01]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:01 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "100" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42.01\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"\\u0410\\u0440\\u0442\\u0443\\u0440\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "48" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\u0410\u0440\u0442\u0443\u0440\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:02 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "102" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:21:59 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "189" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:21:59 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3333" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "36" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "113" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cell 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "18" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:01 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"0042\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:02 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42.01]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "100" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"42.01\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"\\u0410\\u0440\\u0442\\u0443\\u0440\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "48" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:03 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:04 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\u0410\u0440\u0442\u0443\u0440\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:04 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cell_multiline.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_multiline\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:05 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "209" ] }, "body": { "string": "{\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"createdTime\": \"2023-07-25T15:46:03.548Z\",\n \"modifiedTime\": \"2023-07-25T15:46:04.169Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "76" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:06 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "153" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:07 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_multiline\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "199" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:08 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "76" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "153" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:11 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cell_objects.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_objects\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:10 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"createdTime\": \"2023-07-25T15:46:07.703Z\",\n \"modifiedTime\": \"2023-07-25T15:46:07.720Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:11 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[null, \"cell row 1, col 2\"], [\"cell row 2 col 1\", null]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "69" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"cell row 1, col 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:12 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "111" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"cell row 2 col 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:13 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_objects\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:13 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:14 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[null, \"cell row 1, col 2\"], [\"cell row 2 col 1\", null]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "69" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:15 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "112" ] }, "body": { "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"cell row 1, col 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:16 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "111" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"cell row 2 col 1\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cell_unicode.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_unicode\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:16 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "207" ] }, "body": { "string": "{\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"createdTime\": \"2023-07-25T15:46:14.114Z\",\n \"modifiedTime\": \"2023-07-25T15:46:14.129Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:17 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:18 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "122" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:19 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cell_unicode\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "110" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:19 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "197" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:19 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3341" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:20 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:21 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "122" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:21 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cells.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:22 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"createdTime\": \"2023-07-25T15:46:20.182Z\",\n \"modifiedTime\": \"2023-07-25T15:46:21.154Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:23 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "59" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells 1\\ntest_update_cells 1\"], [\"test_update_cells 2\"], [\"test_update_cells 3\"], [\"test_update_cells 4\"], [\"test_update_cells 5\"], [\"test_update_cells 6\"], [\"test_update_cells 7\"], [\"test_update_cells 8\"], [\"test_update_cells 9\"], [\"test_update_cells 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "284" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:24 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:24 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "509" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells 1\\ntest_update_cells 1\"\n ],\n [\n \"test_update_cells 2\"\n ],\n [\n \"test_update_cells 3\"\n ],\n [\n \"test_update_cells 4\"\n ],\n [\n \"test_update_cells 5\"\n ],\n [\n \"test_update_cells 6\"\n ],\n [\n \"test_update_cells 7\"\n ],\n [\n \"test_update_cells 8\"\n ],\n [\n \"test_update_cells 9\"\n ],\n [\n \"test_update_cells 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:25 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:25 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:26 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "59" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells 1\\ntest_update_cells 1\"], [\"test_update_cells 2\"], [\"test_update_cells 3\"], [\"test_update_cells 4\"], [\"test_update_cells 5\"], [\"test_update_cells 6\"], [\"test_update_cells 7\"], [\"test_update_cells 8\"], [\"test_update_cells 9\"], [\"test_update_cells 10\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "284" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "171" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:27 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "509" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells 1\\ntest_update_cells 1\"\n ],\n [\n \"test_update_cells 2\"\n ],\n [\n \"test_update_cells 3\"\n ],\n [\n \"test_update_cells 4\"\n ],\n [\n \"test_update_cells 5\"\n ],\n [\n \"test_update_cells 6\"\n ],\n [\n \"test_update_cells 7\"\n ],\n [\n \"test_update_cells 8\"\n ],\n [\n \"test_update_cells 9\"\n ],\n [\n \"test_update_cells 10\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:28 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells_noncontiguous\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:27 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "204" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "214" ] }, "body": { "string": "{\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"createdTime\": \"2023-07-25T15:46:25.720Z\",\n \"modifiedTime\": \"2023-07-25T15:46:26.691Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:28 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 1\", \"test_update_cells_noncontiguous 2\", \"test_update_cells_noncontiguous 3\", \"test_update_cells_noncontiguous 4\"], [\"test_update_cells_noncontiguous 5\", \"test_update_cells_noncontiguous 6\", \"test_update_cells_noncontiguous 7\", \"test_update_cells_noncontiguous 8\"], [\"test_update_cells_noncontiguous 9\", \"test_update_cells_noncontiguous 10\", \"test_update_cells_noncontiguous 11\", \"test_update_cells_noncontiguous 12\"], [\"test_update_cells_noncontiguous 13\", \"test_update_cells_noncontiguous 14\", \"test_update_cells_noncontiguous 15\", \"test_update_cells_noncontiguous 16\"], [\"test_update_cells_noncontiguous 17\", \"test_update_cells_noncontiguous 18\", \"test_update_cells_noncontiguous 19\", \"test_update_cells_noncontiguous 20\"], [\"test_update_cells_noncontiguous 21\", \"test_update_cells_noncontiguous 22\", \"test_update_cells_noncontiguous 23\", \"test_update_cells_noncontiguous 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "927" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:29 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "1195" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells_noncontiguous 1\",\n \"test_update_cells_noncontiguous 2\",\n \"test_update_cells_noncontiguous 3\",\n \"test_update_cells_noncontiguous 4\"\n ],\n [\n \"test_update_cells_noncontiguous 5\",\n \"test_update_cells_noncontiguous 6\",\n \"test_update_cells_noncontiguous 7\",\n \"test_update_cells_noncontiguous 8\"\n ],\n [\n \"test_update_cells_noncontiguous 9\",\n \"test_update_cells_noncontiguous 10\",\n \"test_update_cells_noncontiguous 11\",\n \"test_update_cells_noncontiguous 12\"\n ],\n [\n \"test_update_cells_noncontiguous 13\",\n \"test_update_cells_noncontiguous 14\",\n \"test_update_cells_noncontiguous 15\",\n \"test_update_cells_noncontiguous 16\"\n ],\n [\n \"test_update_cells_noncontiguous 17\",\n \"test_update_cells_noncontiguous 18\",\n \"test_update_cells_noncontiguous 19\",\n \"test_update_cells_noncontiguous 20\"\n ],\n [\n \"test_update_cells_noncontiguous 21\",\n \"test_update_cells_noncontiguous 22\",\n \"test_update_cells_noncontiguous 23\",\n \"test_update_cells_noncontiguous 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 25 top_left\", null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, \"test_update_cells_noncontiguous 26 bottom_right\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "254" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:30 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "1218" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells_noncontiguous 25 top_left\",\n \"test_update_cells_noncontiguous 2\",\n \"test_update_cells_noncontiguous 3\",\n \"test_update_cells_noncontiguous 4\"\n ],\n [\n \"test_update_cells_noncontiguous 5\",\n \"test_update_cells_noncontiguous 6\",\n \"test_update_cells_noncontiguous 7\",\n \"test_update_cells_noncontiguous 8\"\n ],\n [\n \"test_update_cells_noncontiguous 9\",\n \"test_update_cells_noncontiguous 10\",\n \"test_update_cells_noncontiguous 11\",\n \"test_update_cells_noncontiguous 12\"\n ],\n [\n \"test_update_cells_noncontiguous 13\",\n \"test_update_cells_noncontiguous 14\",\n \"test_update_cells_noncontiguous 15\",\n \"test_update_cells_noncontiguous 16\"\n ],\n [\n \"test_update_cells_noncontiguous 17\",\n \"test_update_cells_noncontiguous 18\",\n \"test_update_cells_noncontiguous 19\",\n \"test_update_cells_noncontiguous 20\"\n ],\n [\n \"test_update_cells_noncontiguous 21\",\n \"test_update_cells_noncontiguous 22\",\n \"test_update_cells_noncontiguous 23\",\n \"test_update_cells_noncontiguous 26 bottom_right\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells_noncontiguous\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "117" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:30 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "204" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:31 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3348" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "58" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 1\", \"test_update_cells_noncontiguous 2\", \"test_update_cells_noncontiguous 3\", \"test_update_cells_noncontiguous 4\"], [\"test_update_cells_noncontiguous 5\", \"test_update_cells_noncontiguous 6\", \"test_update_cells_noncontiguous 7\", \"test_update_cells_noncontiguous 8\"], [\"test_update_cells_noncontiguous 9\", \"test_update_cells_noncontiguous 10\", \"test_update_cells_noncontiguous 11\", \"test_update_cells_noncontiguous 12\"], [\"test_update_cells_noncontiguous 13\", \"test_update_cells_noncontiguous 14\", \"test_update_cells_noncontiguous 15\", \"test_update_cells_noncontiguous 16\"], [\"test_update_cells_noncontiguous 17\", \"test_update_cells_noncontiguous 18\", \"test_update_cells_noncontiguous 19\", \"test_update_cells_noncontiguous 20\"], [\"test_update_cells_noncontiguous 21\", \"test_update_cells_noncontiguous 22\", \"test_update_cells_noncontiguous 23\", \"test_update_cells_noncontiguous 24\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "927" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:32 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "1195" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells_noncontiguous 1\",\n \"test_update_cells_noncontiguous 2\",\n \"test_update_cells_noncontiguous 3\",\n \"test_update_cells_noncontiguous 4\"\n ],\n [\n \"test_update_cells_noncontiguous 5\",\n \"test_update_cells_noncontiguous 6\",\n \"test_update_cells_noncontiguous 7\",\n \"test_update_cells_noncontiguous 8\"\n ],\n [\n \"test_update_cells_noncontiguous 9\",\n \"test_update_cells_noncontiguous 10\",\n \"test_update_cells_noncontiguous 11\",\n \"test_update_cells_noncontiguous 12\"\n ],\n [\n \"test_update_cells_noncontiguous 13\",\n \"test_update_cells_noncontiguous 14\",\n \"test_update_cells_noncontiguous 15\",\n \"test_update_cells_noncontiguous 16\"\n ],\n [\n \"test_update_cells_noncontiguous 17\",\n \"test_update_cells_noncontiguous 18\",\n \"test_update_cells_noncontiguous 19\",\n \"test_update_cells_noncontiguous 20\"\n ],\n [\n \"test_update_cells_noncontiguous 21\",\n \"test_update_cells_noncontiguous 22\",\n \"test_update_cells_noncontiguous 23\",\n \"test_update_cells_noncontiguous 24\"\n ]\n ]\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 25 top_left\", null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, \"test_update_cells_noncontiguous 26 bottom_right\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "254" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:33 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "168" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:34 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "1218" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D6\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_update_cells_noncontiguous 25 top_left\",\n \"test_update_cells_noncontiguous 2\",\n \"test_update_cells_noncontiguous 3\",\n \"test_update_cells_noncontiguous 4\"\n ],\n [\n \"test_update_cells_noncontiguous 5\",\n \"test_update_cells_noncontiguous 6\",\n \"test_update_cells_noncontiguous 7\",\n \"test_update_cells_noncontiguous 8\"\n ],\n [\n \"test_update_cells_noncontiguous 9\",\n \"test_update_cells_noncontiguous 10\",\n \"test_update_cells_noncontiguous 11\",\n \"test_update_cells_noncontiguous 12\"\n ],\n [\n \"test_update_cells_noncontiguous 13\",\n \"test_update_cells_noncontiguous 14\",\n \"test_update_cells_noncontiguous 15\",\n \"test_update_cells_noncontiguous 16\"\n ],\n [\n \"test_update_cells_noncontiguous 17\",\n \"test_update_cells_noncontiguous 18\",\n \"test_update_cells_noncontiguous 19\",\n \"test_update_cells_noncontiguous 20\"\n ],\n [\n \"test_update_cells_noncontiguous 21\",\n \"test_update_cells_noncontiguous 22\",\n \"test_update_cells_noncontiguous 23\",\n \"test_update_cells_noncontiguous 26 bottom_right\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:34 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_cells_unicode.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells_unicode\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:33 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "208" ] }, "body": { "string": "{\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"createdTime\": \"2023-07-25T15:46:31.432Z\",\n \"modifiedTime\": \"2023-07-25T15:46:32.462Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:34 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:35 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "122" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:36 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_cells_unicode\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "111" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:36 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "198" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:37 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3342" ] }, "body": { "string": "{\n \"spreadsheetId\": \"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "55" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "73" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:38 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "165" ] }, "body": { "string": "{\n \"spreadsheetId\": \"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:39 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "122" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:39 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_tab_color.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_tab_color\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "107" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:38 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3338" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "204" ] }, "body": { "string": "{\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"createdTime\": \"2023-07-25T15:46:36.621Z\",\n \"modifiedTime\": \"2023-07-25T15:46:37.474Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3338" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:39 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "168" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:40 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {\n \"tabColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"blue\": 0.49803922\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:41 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_tab_color\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "107" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:43 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "194" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:43 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3338" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3338" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:44 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "57" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "168" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:45 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"properties\": {\n \"tabColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"blue\": 0.49803922\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:45 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_title.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_title\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:43 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:46:41.794Z\",\n \"modifiedTime\": \"2023-07-25T15:46:42.740Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:44 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"I'm a new title\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:45 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_title\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "103" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:49 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "190" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:50 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:50 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:51 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3334" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"I'm a new title\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "120" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:22:52 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3343" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:22:53 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_update_works_with_swapped_values_and_range.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_update_works_with_swapped_values_and_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "133" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ], "content-length": [ "220" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\",\n \"name\": \"Test WorksheetTest test_update_works_with_swapped_values_and_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:14 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "content-length": [ "3364" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_works_with_swapped_values_and_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:14 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "content-length": [ "3364" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_works_with_swapped_values_and_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:14 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "122" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:15 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "content-length": [ "169" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27%21D4%3AA1", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "Transfer-Encoding": [ "chunked" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:15 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "private" ], "content-length": [ "234" ] }, "body": { "string": "{\n \"range\": \"Sheet1!A1:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\",\n \"\",\n \"D1\"\n ],\n [\n \"\",\n \"b2\"\n ],\n [],\n [\n \"A4\",\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Content-Length": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Server": [ "ESF" ], "Date": [ "Sat, 28 Oct 2023 21:44:16 GMT" ], "Content-Type": [ "text/html" ], "Vary": [ "Origin, X-Origin" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_worksheet_notes.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_worksheet_notes\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "106" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:54 GMT" ], "Vary": [ "Origin, X-Origin" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ], "content-length": [ "193" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:55 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:56 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "3337" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "207" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:57 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:58 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "259" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"slim shaddy\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"the real slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "216" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:58 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:59 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "268" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"the real slim shaddy\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "196" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:59 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:46:59 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"read my note\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"Or don't\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "398" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:00 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:00 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "260" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"read my note\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:01 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "256" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"Or don't\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"remember to clean bedroom\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"do homeworks\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "415" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:02 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:02 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "273" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"remember to clean bedroom\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:02 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "260" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {\n \"rowData\": [\n {\n \"values\": [\n {\n \"note\": \"do homeworks\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "378" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:03 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "105" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:04 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "Date": [ "Tue, 30 Apr 2024 01:47:04 GMT" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "private" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "content-length": [ "69" ] }, "body": { "string": "{\n \"sheets\": [\n {\n \"data\": [\n {}\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-allowed-locations": [ "0x0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], "Date": [ "Tue, 30 Apr 2024 01:47:05 GMT" ], "Content-Length": [ "0" ], "X-XSS-Protection": [ "0" ], "Server": [ "ESF" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Pragma": [ "no-cache" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cassettes/WorksheetTest.test_worksheet_update_index.json ================================================ { "version": 1, "interactions": [ { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_worksheet_update_index\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:57 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "210" ] }, "body": { "string": "{\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"createdTime\": \"2023-07-25T15:46:54.885Z\",\n \"modifiedTime\": \"2023-07-25T15:46:54.905Z\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "147" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "384" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "149" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:58 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "386" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3840" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 905329856, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "112" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], "Cache-Control": [ "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:46:59 GMT" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ "3840" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "x-goog-api-client": [ "cred-type/sa" ], "x-identity-trust-boundary": [ "0" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], "Content-Type": [ "text/html" ], "Server": [ "ESF" ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ "Tue, 25 Jul 2023 15:47:00 GMT" ], "X-Content-Type-Options": [ "nosniff" ] }, "body": { "string": "" } } }, { "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", "body": "{\"name\": \"Test WorksheetTest test_worksheet_update_index\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:23:08 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ], "content-length": [ "200" ] }, "body": { "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/edit\"\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:09 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3344" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:10 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "107" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "147" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "384" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 595817961,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "149" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "387" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1420284403,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "x-l2-request-path": [ "l2-managed-6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:11 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3841" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 595817961,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1420284403,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/edit\"\n}\n" } } }, { "request": { "method": "POST", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1420284403, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "113" ], "Content-Type": [ "application/json" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "97" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "authorization": [ "" ] } }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Cache-Control": [ "private" ], "Transfer-Encoding": [ "chunked" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ "Wed, 06 Sep 2023 21:23:12 GMT" ], "Server": [ "ESF" ], "Vary": [ "Origin", "X-Origin", "Referer" ], "content-length": [ "3841" ] }, "body": { "string": "{\n \"spreadsheetId\": \"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 1420284403,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 595817961,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/edit\"\n}\n" } } }, { "request": { "method": "DELETE", "uri": "https://www.googleapis.com/drive/v3/files/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" ], "Accept-Encoding": [ "gzip, deflate" ], "Accept": [ "*/*" ], "Connection": [ "keep-alive" ], "Content-Length": [ "0" ], "authorization": [ "" ] } }, "response": { "status": { "code": 204, "message": "No Content" }, "headers": { "X-XSS-Protection": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Type": [ "text/html" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], "Date": [ "Wed, 06 Sep 2023 21:23:13 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Length": [ "0" ], "Server": [ "ESF" ], "Vary": [ "Origin, X-Origin" ] }, "body": { "string": "" } } } ] } ================================================ FILE: tests/cell_test.py ================================================ from typing import Generator import pytest from pytest import FixtureRequest import gspread from gspread.client import Client from gspread.spreadsheet import Spreadsheet from gspread.worksheet import Worksheet from .conftest import GspreadTest class CellTest(GspreadTest): """Test for gspread.Cell.""" spreadsheet: Spreadsheet sheet: Worksheet @pytest.fixture(scope="function", autouse=True) def init( self: "CellTest", client: Client, request: FixtureRequest ) -> Generator[None, None, None]: # User current test name in spreadsheet name name = self.get_temporary_spreadsheet_title(request.node.name) CellTest.spreadsheet = client.create(name) CellTest.sheet = CellTest.spreadsheet.sheet1 yield client.del_spreadsheet(CellTest.spreadsheet.id) @pytest.mark.vcr() def test_properties(self): sg = self._sequence_generator() update_value = next(sg) self.sheet.update_acell("A1", update_value) cell = self.sheet.acell("A1") self.assertEqual(cell.value, update_value) self.assertEqual(cell.row, 1) self.assertEqual(cell.col, 1) @pytest.mark.vcr() def test_equality(self): sg = self._sequence_generator() update_value = next(sg) self.sheet.update_acell("A1", update_value) cell = self.sheet.acell("A1") same_cell = self.sheet.cell(1, 1) self.assertEqual(cell, same_cell) self.sheet.update_acell("A2", update_value) another_cell = self.sheet.acell("A2") self.assertNotEqual(cell, another_cell) self.sheet.update_acell("B1", update_value) another_cell = self.sheet.acell("B1") self.assertNotEqual(cell, another_cell) @pytest.mark.vcr() def test_numeric_value(self): numeric_value = 1.0 / 1024 # Use a formula here to avoid issues with differing decimal marks: self.sheet.update_acell("A1", "= 1 / 1024") cell = self.sheet.acell("A1") self.assertEqual(cell.numeric_value, numeric_value) self.assertIsInstance(cell.numeric_value, float) # test value for popular format with long numbers numeric_value = 2000000.01 self.sheet.update_acell("A1", "2,000,000.01") cell = self.sheet.acell("A1") self.assertEqual(cell.numeric_value, numeric_value) self.assertIsInstance(cell.numeric_value, float) # test non numeric value self.sheet.update_acell("A1", "Non-numeric value") cell = self.sheet.acell("A1") self.assertEqual(cell.numeric_value, None) @pytest.mark.vcr() def test_a1_value(self): cell = self.sheet.cell(4, 4) self.assertEqual(cell.address, "D4") self.sheet.update_acell("B1", "Dummy") result = self.sheet.find("Dummy") if result is None: self.fail("did not find cell with matching text 'Dummy'") else: cell = result self.assertEqual(cell.address, "B1") self.assertEqual(cell.value, "Dummy") cell = gspread.cell.Cell(1, 2, "Foo Bar") self.assertEqual(cell.address, "B1") cell = gspread.cell.Cell.from_address("A1", "Foo Bar") self.assertEqual(cell.address, "A1") self.assertEqual(cell.value, "Foo Bar") self.assertEqual((cell.row, cell.col), (1, 1)) @pytest.mark.vcr() def test_merge_cells(self): self.sheet.update([[42, 43], [43, 44]], "A1:B2") # test merge rows self.sheet.merge_cells(1, 1, 2, 2, merge_type="MERGE_ROWS") merges = self.sheet._get_sheet_property("merges", []) self.assertEqual(len(merges), 2) # test merge all self.sheet.merge_cells(1, 1, 2, 2) merges = self.sheet._get_sheet_property("merges", []) self.assertEqual(len(merges), 1) self.sheet.unmerge_cells(1, 1, 2, 2) merges = self.sheet._get_sheet_property("merges", []) self.assertEqual(len(merges), 0) @pytest.mark.vcr() def test_define_named_range(self): # define the named range range_name = "TestDefineNamedRange" self.sheet.define_named_range("A1:B2", range_name) # get the ranges from the metadata named_range_dict = self.spreadsheet.fetch_sheet_metadata( params={"fields": "namedRanges"} ) # make sure that a range was returned and it has the namedRanges key, # also that the dict contains a single range self.assertNotEqual(named_range_dict, {}) self.assertIn("namedRanges", named_range_dict) self.assertTrue(len(named_range_dict["namedRanges"]) == 1) named_range = named_range_dict["namedRanges"][0] # ensure all of the properties of the named range match what we expect self.assertEqual(named_range["name"], range_name) self.assertEqual(named_range["range"]["startRowIndex"], 0) self.assertEqual(named_range["range"]["endRowIndex"], 2) self.assertEqual(named_range["range"]["startColumnIndex"], 0) self.assertEqual(named_range["range"]["endColumnIndex"], 2) # clean up the named range self.sheet.delete_named_range(named_range["namedRangeId"]) # ensure the range has been deleted named_range_dict = self.spreadsheet.fetch_sheet_metadata( params={"fields": "namedRanges"} ) self.assertEqual(named_range_dict, {}) # Add the same range but with index based coordinates self.sheet.define_named_range(1, 1, 2, 2, range_name) # Check the created named range named_range_dict = self.spreadsheet.fetch_sheet_metadata( params={"fields": "namedRanges"} ) # make sure that a range was returned and it has the namedRanges key, # also that the dict contains a single range self.assertNotEqual(named_range_dict, {}) self.assertIn("namedRanges", named_range_dict) self.assertTrue(len(named_range_dict["namedRanges"]) == 1) named_range = named_range_dict["namedRanges"][0] # ensure all of the properties of the named range match what we expect self.assertEqual(named_range["name"], range_name) self.assertEqual(named_range["range"]["startRowIndex"], 0) self.assertEqual(named_range["range"]["endRowIndex"], 2) self.assertEqual(named_range["range"]["startColumnIndex"], 0) self.assertEqual(named_range["range"]["endColumnIndex"], 2) @pytest.mark.vcr() def test_delete_named_range(self): # define a named range result = self.sheet.define_named_range("A1:B2", "TestDeleteNamedRange") # from the result, get the named range we just created named_range_id = result["replies"][0]["addNamedRange"]["namedRange"][ "namedRangeId" ] self.sheet.delete_named_range(named_range_id) # get the ranges from the metadata named_range_dict = self.spreadsheet.fetch_sheet_metadata( params={"fields": "namedRanges"} ) # make sure that no ranges were returned self.assertEqual(named_range_dict, {}) ================================================ FILE: tests/client_test.py ================================================ import time from typing import Generator import pytest from pytest import FixtureRequest import gspread from gspread.client import Client from gspread.spreadsheet import Spreadsheet from .conftest import GspreadTest class ClientTest(GspreadTest): """Test for gspread.client.""" gc: Client spreadsheet: Spreadsheet @pytest.fixture(scope="function", autouse=True) def init( self: "ClientTest", client: Client, request: FixtureRequest ) -> Generator[None, None, None]: ClientTest.gc = client name = self.get_temporary_spreadsheet_title(request.node.name) ClientTest.spreadsheet = client.create(name) yield client.del_spreadsheet(ClientTest.spreadsheet.id) @pytest.mark.vcr() def test_no_found_exeption(self): noexistent_title = "Please don't use this phrase as a name of a sheet." self.assertRaises(gspread.SpreadsheetNotFound, self.gc.open, noexistent_title) @pytest.mark.vcr() def test_list_spreadsheet_files(self): res = self.gc.list_spreadsheet_files() self.assertIsInstance(res, list) for f in res: self.assertIsInstance(f, dict) self.assertIn("id", f) self.assertIn("name", f) self.assertIn("createdTime", f) self.assertIn("modifiedTime", f) @pytest.mark.vcr() def test_openall(self): spreadsheet_list = self.gc.openall() spreadsheet_list2 = self.gc.openall(spreadsheet_list[0].title) self.assertTrue(len(spreadsheet_list2) < len(spreadsheet_list)) for s in spreadsheet_list: self.assertIsInstance(s, gspread.Spreadsheet) for s in spreadsheet_list2: self.assertIsInstance(s, gspread.Spreadsheet) @pytest.mark.vcr() def test_create(self): title = "Test Spreadsheet" new_spreadsheet = self.gc.create(title) self.assertIsInstance(new_spreadsheet, gspread.Spreadsheet) @pytest.mark.vcr() def test_copy(self): original_spreadsheet = self.spreadsheet spreadsheet_copy = self.gc.copy(original_spreadsheet.id) self.assertIsInstance(spreadsheet_copy, gspread.Spreadsheet) original_metadata = original_spreadsheet.fetch_sheet_metadata() copy_metadata = spreadsheet_copy.fetch_sheet_metadata() self.assertEqual(original_metadata["sheets"], copy_metadata["sheets"]) @pytest.mark.vcr() def test_import_csv(self): spreadsheet = self.spreadsheet sg = self._sequence_generator() csv_rows = 4 csv_cols = 4 rows = [[next(sg) for j in range(csv_cols)] for i in range(csv_rows)] simple_csv_data = "\n".join([",".join(row) for row in rows]) self.gc.import_csv(spreadsheet.id, simple_csv_data) sh = self.gc.open_by_key(spreadsheet.id) self.assertEqual(sh.sheet1.get_all_values(), rows) @pytest.mark.vcr() def test_access_non_existing_spreadsheet(self): with self.assertRaises(gspread.exceptions.SpreadsheetNotFound): self.gc.open_by_key("test") with self.assertRaises(gspread.exceptions.SpreadsheetNotFound): self.gc.open_by_url("https://docs.google.com/spreadsheets/d/test") @pytest.mark.vcr() def test_open_all_has_metadata(self): """tests all spreadsheets are opened and that they all have metadata""" spreadsheets = self.gc.openall() for spreadsheet in spreadsheets: self.assertIsInstance(spreadsheet, gspread.Spreadsheet) # has properties that are not from Drive API (i.e., not title, id, creationTime) self.assertTrue(spreadsheet.locale) self.assertTrue(spreadsheet.timezone) @pytest.mark.vcr() def test_open_by_key_has_metadata(self): """tests open_by_key has metadata""" spreadsheet = self.gc.open_by_key(self.spreadsheet.id) self.assertIsInstance(spreadsheet, gspread.Spreadsheet) # has properties that are not from Drive API (i.e., not title, id, creationTime) self.assertTrue(spreadsheet.locale) self.assertTrue(spreadsheet.timezone) @pytest.mark.vcr() def test_open_by_name_has_metadata(self): """tests open has metadata""" spreadsheet = self.gc.open(self.spreadsheet.title) self.assertIsInstance(spreadsheet, gspread.Spreadsheet) # has properties that are not from Drive API (i.e., not title, id, creationTime) self.assertTrue(spreadsheet.locale) self.assertTrue(spreadsheet.timezone) @pytest.mark.vcr() def test_access_private_spreadsheet(self): """tests that opening private spreadsheet returns SpreadsheetPermissionDenied""" private_id = "1jIKzPs8LsiZZdLdeMEP-5ZIHw6RkjiOmj1LrJN706Yc" with self.assertRaises(PermissionError): self.gc.open_by_key(private_id) @pytest.mark.vcr() def test_client_export_spreadsheet(self): """Test the export feature of a spreadsheet. JSON cannot serialize binary data (like PDF or OpenSpreadsheetFormat) Export to CSV text format only """ values = [ ["a1", "B2"], ] self.spreadsheet.sheet1.update( values=values, range_name="A1:B2", ) res = self.gc.export(self.spreadsheet.id, gspread.utils.ExportFormat.CSV) res_values = bytes(res).decode("utf-8").strip("'").split(",") self.assertEqual( values[0], res_values, "exported values are not the value initially set" ) @pytest.mark.vcr() def test_add_timeout(self): """Test the method to set the HTTP request timeout""" # So far it took 0.17 seconds to fetch the metadata with my connection. # Once recorded it takes 0.001 seconds to run it, so 1 second should be a large enough value timeout = 1 self.gc.set_timeout(timeout) start = time.time() self.spreadsheet.fetch_sheet_metadata() end = time.time() self.assertLessEqual( end - start, timeout, "Request took longer than the set timeout value" ) ================================================ FILE: tests/conftest.py ================================================ import io import itertools import os import unittest from typing import Any, Dict, Generator, Optional, Tuple import pytest from google.auth.credentials import Credentials from google.oauth2.credentials import Credentials as UserCredentials from google.oauth2.service_account import Credentials as ServiceAccountCredentials from requests import Response from vcr import VCR from vcr.errors import CannotOverwriteExistingCassetteException import gspread from gspread.client import Client from gspread.http_client import BackOffHTTPClient CREDS_FILENAME = os.getenv("GS_CREDS_FILENAME") RECORD_MODE = os.getenv("GS_RECORD_MODE", "none") SCOPE = [ "https://spreadsheets.google.com/feeds", "https://www.googleapis.com/auth/drive.file", ] DUMMY_ACCESS_TOKEN = "" I18N_STR = "Iñtërnâtiônàlizætiøn" # .encode('utf8') def read_credentials(filename: str) -> Credentials: return ServiceAccountCredentials.from_service_account_file(filename, scopes=SCOPE) def prefixed_counter(prefix: str, start: int = 1) -> Generator[str, None, None]: c = itertools.count(start) for value in c: yield "{} {}".format(prefix, value) def get_method_name(self_id: str) -> str: return self_id.split(".")[-1] def ignore_retry_requests( response: Dict[str, Dict[str, int]] ) -> Optional[Dict[str, Dict[str, int]]]: SKIP_RECORD = [408, 429] if response["status"]["code"] in SKIP_RECORD: return None # do not record return response @pytest.fixture(scope="module") def vcr_config(): return { "match_on": ["uri", "method"], # match each query using the uri and the method "decode_compressed_response": True, # decode requests to save clear content "record_mode": RECORD_MODE, "serializer": "json", "path_transformer": VCR.ensure_suffix(".json"), "before_record_response": ignore_retry_requests, "ignore_hosts": [ "oauth2.googleapis.com", # skip oauth requests, in replay mode we don't use them ], "filter_headers": [ ("authorization", DUMMY_ACCESS_TOKEN) # hide token from the recording ], } class DummyCredentials(UserCredentials): pass class GspreadTest(unittest.TestCase): @classmethod def get_temporary_spreadsheet_title(cls, suffix: str = "") -> str: return "Test {} {}".format(cls.__name__, suffix) @classmethod def get_cassette_name(cls) -> str: return cls.__name__ def _sequence_generator(self) -> Generator[str, None, None]: return prefixed_counter(get_method_name(self.id())) class VCRHTTPClient(BackOffHTTPClient): def request(self, *args: Any, **kwargs: Any) -> Response: try: return super().request(*args, **kwargs) except CannotOverwriteExistingCassetteException as e: if CREDS_FILENAME is None or RECORD_MODE is None: raise RuntimeError( """ cannot make new HTTP requests in replay-mode. Please run tests with env variables CREDS_FILENAME and RECORD_MODE Please refer to contributing guide for details: https://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md """ ) # necessary env variables were provided, this is a real error # like missing access rights on the actual file/folder where to save the cassette raise e class InvalidJsonApiErrorClient(VCRHTTPClient): """Special HTTP client that always raises an exception due to 500 error with an invalid JSON body. In this case for now it returns some HTML to simulate the use of the wrong HTTP endpoint. """ ERROR_MSG = bytes("

Failed

", "utf-8") def request(self, *args: Any, **kwargs: Any) -> Response: resp = Response() # fake an HTML response instead of a valid JSON response. # urllib3 expect 'raw' to be bytes. resp.raw = io.BytesIO(self.ERROR_MSG) resp.status_code = 500 resp.encoding = "text/html" # now raise the APIError exception as the regular HTTP client would raise gspread.exceptions.APIError(resp) @pytest.fixture(scope="module") def client() -> Client: if CREDS_FILENAME is not None: auth_credentials = read_credentials(CREDS_FILENAME) else: auth_credentials = DummyCredentials(DUMMY_ACCESS_TOKEN) gc = Client(auth=auth_credentials, http_client=VCRHTTPClient) if not isinstance(gc, gspread.client.Client) is True: raise AssertionError return gc def invalid_json_client() -> Tuple[Client, bytes]: """Returns an HTTP client that always returns an invalid JSON payload and the expected error message from the raised exception. """ return ( Client( auth=DummyCredentials(DUMMY_ACCESS_TOKEN), http_client=InvalidJsonApiErrorClient, ), InvalidJsonApiErrorClient.ERROR_MSG, ) ================================================ FILE: tests/spreadsheet_test.py ================================================ import re import time import pytest import gspread from .conftest import GspreadTest, invalid_json_client class SpreadsheetTest(GspreadTest): """Test for gspread.Spreadsheet.""" @pytest.fixture(scope="function", autouse=True) def init(self, client, request): name = self.get_temporary_spreadsheet_title(request.node.name) SpreadsheetTest.spreadsheet = client.create(name) yield client.del_spreadsheet(SpreadsheetTest.spreadsheet.id) @pytest.mark.vcr() def test_bad_json_api_error(self): # no need to pass auth tokens we use a custom HTTP Client that always fail bad_client, error_msg = invalid_json_client() with pytest.raises(gspread.exceptions.APIError) as e: bad_client.get_file_drive_metadata("abcdef0123456789") self.assertTrue(e.match(error_msg.decode())) @pytest.mark.vcr() def test_properties(self): self.assertTrue(re.match(r"^[a-zA-Z0-9-_]+$", self.spreadsheet.id)) self.assertTrue(len(self.spreadsheet.title) > 0) @pytest.mark.vcr() def test_sheet1(self): sheet1 = self.spreadsheet.sheet1 self.assertIsInstance(sheet1, gspread.Worksheet) @pytest.mark.vcr() def test_get_worksheet(self): sheet1 = self.spreadsheet.get_worksheet(0) self.assertIsInstance(sheet1, gspread.Worksheet) @pytest.mark.vcr() def test_get_worksheet_by_id(self): sheet1_by_int = self.spreadsheet.get_worksheet_by_id(0) sheet1_by_str = self.spreadsheet.get_worksheet_by_id("0") self.assertIsInstance(sheet1_by_int, gspread.Worksheet) self.assertIsInstance(sheet1_by_str, gspread.Worksheet) @pytest.mark.vcr() def test_worksheet(self): sheet_title = "Sheet1" sheet = self.spreadsheet.worksheet(sheet_title) self.assertIsInstance(sheet, gspread.Worksheet) @pytest.mark.vcr() def test_worksheets(self): n_worksheets_before = len(self.spreadsheet.worksheets()) self.spreadsheet.add_worksheet("finances", 100, 100) n_worksheets_after = len(self.spreadsheet.worksheets()) self.assertEqual(n_worksheets_before, 1) self.assertEqual(n_worksheets_after, 2) @pytest.mark.vcr() def test_worksheets_exclude_hidden(self): self.spreadsheet.add_worksheet("finances", 100, 100) gacha_worksheet = self.spreadsheet.add_worksheet("gacha", 100, 100) gacha_worksheet.hide() n_worksheets_and_hidden = len(self.spreadsheet.worksheets(exclude_hidden=False)) n_worksheets_no_hidden = len(self.spreadsheet.worksheets(exclude_hidden=True)) self.assertEqual(n_worksheets_and_hidden, 3) self.assertEqual(n_worksheets_no_hidden, 2) @pytest.mark.vcr() def test_worksheet_iteration(self): self.assertEqual( [x.id for x in self.spreadsheet.worksheets()], [sheet.id for sheet in self.spreadsheet], ) @pytest.mark.vcr() def test_values_get(self): sg = self._sequence_generator() worksheet1_name = "{} {}".format("🌵", next(sg)) worksheet = self.spreadsheet.add_worksheet(worksheet1_name, 10, 10) range_label = "{}!{}".format(worksheet1_name, "A1") values = [["🍇", "🍉", "🍋"], ["🍐", "🍎", "🍓"]] self.spreadsheet.values_update( range_label, params={"valueInputOption": "RAW"}, body={"values": values} ) read_data = self.spreadsheet.values_get(worksheet1_name) self.assertEqual(values, read_data["values"]) self.spreadsheet.del_worksheet(worksheet) @pytest.mark.vcr() def test_add_del_worksheet(self): sg = self._sequence_generator() worksheet1_name = next(sg) worksheet2_name = next(sg) worksheet3_name = next(sg) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) existing_sheet_title = worksheet_list[0].title # Add worksheet1 = self.spreadsheet.add_worksheet(worksheet1_name, 1, 1) worksheet2 = self.spreadsheet.add_worksheet(worksheet2_name, 1, 1) worksheet3 = self.spreadsheet.add_worksheet(worksheet3_name, 1, 1) # Re-read, check again worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 4) # Delete self.spreadsheet.del_worksheet(worksheet1) self.spreadsheet.del_worksheet_by_id(int(worksheet2.id)) self.spreadsheet.del_worksheet_by_id(str(worksheet3.id)) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) self.assertEqual(worksheet_list[0].title, existing_sheet_title) @pytest.mark.vcr() def test_values_batch_get(self): sg = self._sequence_generator() worksheet1_name = "{} {}".format("🌵", next(sg)) worksheet = self.spreadsheet.add_worksheet(worksheet1_name, 10, 10) range_label = "{}!{}".format(worksheet1_name, "A1") values = [["🍇", "🍉", "🍋"], ["🍐", "🍎", "🍓"]] self.spreadsheet.values_update( range_label, params={"valueInputOption": "RAW"}, body={"values": values} ) ranges = [ "{}!{}:{}".format(worksheet1_name, col, col) for col in ["A", "B", "C"] ] read_data = self.spreadsheet.values_batch_get(ranges) for colix, rng in enumerate(read_data["valueRanges"]): for rowix, ele in enumerate(rng["values"]): self.assertEqual(values[rowix][colix], ele[0]) self.spreadsheet.del_worksheet(worksheet) @pytest.mark.vcr() def test_timezone_and_locale(self): prev_timezone = self.spreadsheet.timezone prev_locale = self.spreadsheet.locale new_timezone = "Europe/Paris" new_locale = "fr_FR" self.spreadsheet.update_timezone(new_timezone) self.spreadsheet.update_locale(new_locale) # must fetch metadata properties = self.spreadsheet.fetch_sheet_metadata()["properties"] timezone_prop_after = self.spreadsheet.timezone locale_prop_after = self.spreadsheet.locale self.assertNotEqual(prev_timezone, properties["timeZone"]) self.assertNotEqual(prev_locale, properties["locale"]) self.assertEqual(new_timezone, properties["timeZone"]) self.assertEqual(new_timezone, timezone_prop_after) self.assertEqual(new_locale, properties["locale"]) self.assertEqual(new_locale, locale_prop_after) @pytest.mark.vcr() def test_update_title(self): prev_title = self.spreadsheet.title new_title = "🎊 Updated Title #123 🎉" self.spreadsheet.update_title(new_title) # Check whether title is updated immediately self.assertNotEqual(prev_title, self.spreadsheet.title) self.assertEqual(new_title, self.spreadsheet.title) # Check whether changes persist upon re-fetching properties = self.spreadsheet.fetch_sheet_metadata()["properties"] self.assertNotEqual(prev_title, properties["title"]) self.assertEqual(new_title, properties["title"]) @pytest.mark.vcr() def test_get_lastUpdateTime(self): """Test get_lastUpdateTime method works""" lastUpdateTime_before = self.spreadsheet.get_lastUpdateTime() time.sleep(0.01) self.spreadsheet.update_title("🎊 Updated Title #123 🎉") lastUpdateTime_after = self.spreadsheet.get_lastUpdateTime() self.assertNotEqual(lastUpdateTime_before, lastUpdateTime_after) @pytest.mark.vcr() def test_creationTime_prop(self): """test lastUpdateTime property behaviour""" creationTime = self.spreadsheet.creationTime self.assertIsNotNone(creationTime) @pytest.mark.vcr() def test_export_spreadsheet(self): """Test the export feature of a spreadsheet. JSON cannot serialize binary data (like PDF or OpenSpreadsheetFormat) Export to CSV text format only """ values = [ ["a1", "B2"], ] self.spreadsheet.sheet1.update( values=values, range_name="A1:B2", ) res = self.spreadsheet.export(gspread.utils.ExportFormat.CSV) res_values = bytes(res).decode("utf-8").strip("'").split(",") self.assertEqual( values[0], res_values, "exported values are not the value initially set" ) ================================================ FILE: tests/utils_test.py ================================================ import unittest import gspread import gspread.utils as utils class UtilsTest(unittest.TestCase): def test_extract_id_from_url(self): url_id_list = [ # New-style url ( "https://docs.google.com/spreadsheets/d/" "1qpyC0X3A0MwQoFDE8p-Bll4hps/edit#gid=0", "1qpyC0X3A0MwQoFDE8p-Bll4hps", ), ( "https://docs.google.com/spreadsheets/d/" "1qpyC0X3A0MwQoFDE8p-Bll4hps/edit", "1qpyC0X3A0MwQoFDE8p-Bll4hps", ), ( "https://docs.google.com/spreadsheets/d/" "1qpyC0X3A0MwQoFDE8p-Bll4hps", "1qpyC0X3A0MwQoFDE8p-Bll4hps", ), # Old-style url ( "https://docs.google.com/spreadsheet/" "ccc?key=1qpyC0X3A0MwQoFDE8p-Bll4hps&usp=drive_web#gid=0", "1qpyC0X3A0MwQoFDE8p-Bll4hps", ), ] for url, id in url_id_list: self.assertEqual(id, utils.extract_id_from_url(url)) def test_no_extract_id_from_url(self): self.assertRaises( gspread.NoValidUrlKeyFound, utils.extract_id_from_url, "http://example.org" ) def test_a1_to_rowcol(self): self.assertEqual(utils.a1_to_rowcol("ABC3"), (3, 731)) def test_rowcol_to_a1(self): self.assertEqual(utils.rowcol_to_a1(3, 731), "ABC3") self.assertEqual(utils.rowcol_to_a1(1, 104), "CZ1") def test_addr_converters(self): for row in range(1, 257): for col in range(1, 512): addr = utils.rowcol_to_a1(row, col) (r, c) = utils.a1_to_rowcol(addr) self.assertEqual((row, col), (r, c)) def test_get_gid(self): gid = "od6" self.assertEqual(utils.wid_to_gid(gid), "0") gid = "osyqnsz" self.assertEqual(utils.wid_to_gid(gid), "1751403737") gid = "ogsrar0" self.assertEqual(utils.wid_to_gid(gid), "1015761654") def test_numericise(self): self.assertEqual(utils.numericise("faa"), "faa") self.assertEqual(utils.numericise("3"), 3) self.assertEqual(utils.numericise("3_2"), "3_2") self.assertEqual( utils.numericise("3_2", allow_underscores_in_numeric_literals=False), "3_2" ) self.assertEqual( utils.numericise("3_2", allow_underscores_in_numeric_literals=True), 32 ) self.assertEqual(utils.numericise("3.1"), 3.1) self.assertEqual(utils.numericise("", empty2zero=True), 0) self.assertEqual(utils.numericise("", empty2zero=False), "") self.assertEqual(utils.numericise("", default_blank=None), None) self.assertEqual(utils.numericise("", default_blank="foo"), "foo") self.assertEqual(utils.numericise(""), "") self.assertEqual(utils.numericise(None), None) # test numericise_all inputs = ["1", "2", "3"] expected = [1, 2, 3] self.assertEqual(utils.numericise_all(inputs), expected) # skip non digit values inputs + ["a"] expected + ["a"] self.assertEqual(utils.numericise_all(inputs), expected) # skip ignored columns inputs + ["5", "5"] expected + ["5", 5] self.assertEqual(utils.numericise_all(inputs, ignore=[5]), expected) # provide explicit `None` as ignored list self.assertEqual(utils.numericise_all(inputs, ignore=None), expected) def test_a1_to_grid_range_simple(self): expected_single_dimension = { "startRowIndex": 0, "endRowIndex": 10, "startColumnIndex": 0, "endColumnIndex": 1, } actual_single_dimension = utils.a1_range_to_grid_range("A1:A10") expected_two_dimensional = { "startRowIndex": 2, "endRowIndex": 4, "startColumnIndex": 0, "endColumnIndex": 2, } actual_two_dimensional = utils.a1_range_to_grid_range("A3:B4") expected_with_sheet_id = { "sheetId": 0, "startRowIndex": 0, "endRowIndex": 10, "startColumnIndex": 0, "endColumnIndex": 1, } actual_with_sheet_id = utils.a1_range_to_grid_range("A1:A10", sheet_id=0) self.assertEqual(actual_single_dimension, expected_single_dimension) self.assertEqual(actual_two_dimensional, expected_two_dimensional) self.assertEqual(actual_with_sheet_id, expected_with_sheet_id) def test_a1_to_grid_range_unbounded(self): expected_unbounded = { "startRowIndex": 4, "startColumnIndex": 0, "endColumnIndex": 2, } actual_unbounded = utils.a1_range_to_grid_range("A5:B") expected_full_columns = {"startColumnIndex": 0, "endColumnIndex": 2} actual_full_columns = utils.a1_range_to_grid_range("A:B") expected_with_sheet_id = { "sheetId": 0, "startRowIndex": 4, "startColumnIndex": 0, "endColumnIndex": 2, } actual_with_sheet_id = utils.a1_range_to_grid_range("A5:B", sheet_id=0) self.assertEqual(actual_unbounded, expected_unbounded) self.assertEqual(actual_full_columns, expected_full_columns) self.assertEqual(actual_with_sheet_id, expected_with_sheet_id) def test_a1_to_grid_range_improper_range(self): expected_single_cell = { "startRowIndex": 0, "endRowIndex": 1, "startColumnIndex": 0, "endColumnIndex": 1, } actual_single_cell = utils.a1_range_to_grid_range("A1") expected_single_column = {"startColumnIndex": 0, "endColumnIndex": 1} actual_single_column = utils.a1_range_to_grid_range("A") expected_single_row = {"startRowIndex": 0, "endRowIndex": 1} actual_single_row = utils.a1_range_to_grid_range("1") expected_with_sheet = { "sheetId": 0, "startRowIndex": 0, "endRowIndex": 1, "startColumnIndex": 0, "endColumnIndex": 1, } actual_with_sheet = utils.a1_range_to_grid_range("A1", sheet_id=0) self.assertEqual(actual_single_cell, expected_single_cell) self.assertEqual(actual_single_column, expected_single_column) self.assertEqual(actual_single_row, expected_single_row) self.assertEqual(actual_with_sheet, expected_with_sheet) def test_a1_to_grid_range_other_directions(self): from_top_left = utils.a1_range_to_grid_range("C2:D4") from_bottom_right = utils.a1_range_to_grid_range("D4:C2") from_top_right = utils.a1_range_to_grid_range("D2:C4") from_bottom_left = utils.a1_range_to_grid_range("C4:D2") self.assertEqual(from_top_left, from_bottom_right) self.assertEqual(from_top_left, from_bottom_left) self.assertEqual(from_top_left, from_top_right) def test_column_letter_to_index(self): # All the input values to test one after an other # [0] input value # [1] expected return value # [2] expected exception to raise inputs = [ ("", None, gspread.exceptions.InvalidInputValue), ("A", 1, None), ("Z", 26, None), ("AA", 27, None), ("AAA", 703, None), ("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 256094574536617744129141650397448476, None), ("!@#$%^&*()", None, gspread.exceptions.InvalidInputValue), ] for label, expected, exception in inputs: if exception is not None: # assert the exception is raised with self.assertRaises(exception): utils.column_letter_to_index(label) else: # assert the return values is correct result = utils.column_letter_to_index(label) self.assertEqual( result, expected, "could not convert column letter '{}' to the right value '{}".format( label, expected ), ) def test_combine_merge_values(self): sheet_data = [ [1, None, None, None], [None, None, "title", None], [None, None, 2, None], ["num", "val", None, 0], ] sheet_metadata = { "properties": {"sheetId": 0}, "merges": [ { "startRowIndex": 0, "endRowIndex": 2, "startColumnIndex": 0, "endColumnIndex": 2, }, { "startRowIndex": 1, "endRowIndex": 2, "startColumnIndex": 2, "endColumnIndex": 4, }, { "startRowIndex": 2, "endRowIndex": 4, "startColumnIndex": 2, "endColumnIndex": 3, }, ], } expected_combine = [ [1, 1, None, None], [1, 1, "title", "title"], [None, None, 2, None], ["num", "val", 2, 0], ] actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data, 0, 0) self.assertEqual(actual_combine, expected_combine) def test_convert_colors_to_hex_value(self): color = {"red": 1, "green": 0.49803922, "blue": 0} expected_hex = "#FF7F00" # successful convert from colors hex = utils.convert_colors_to_hex_value(**color) self.assertEqual(hex, expected_hex) # successful convert from partial input hex = utils.convert_colors_to_hex_value(green=1) self.assertEqual(hex, "#00FF00") # throw ValueError on color values out of range (0-1) with self.assertRaises(ValueError): utils.convert_colors_to_hex_value(1.23, 0, -50) def test_combine_merge_values_outside_range(self): """Make sure that merges outside the range of the sheet are ignored or partially ignored see issue #1298 """ sheet_data = [ [1, None, None, None], [None, None, "title", None], [None, None, 2, None], ["num", "val", None, 0], ] sheet_metadata = { "properties": {"sheetId": 0}, "merges": [ { "startRowIndex": 7, "endRowIndex": 9, "startColumnIndex": 7, "endColumnIndex": 9, }, { "startRowIndex": 3, "endRowIndex": 5, "startColumnIndex": 1, "endColumnIndex": 2, }, ], } expected_combine = [ [1, None, None, None], [None, None, "title", None], [None, None, 2, None], ["num", "val", None, 0], ] actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data, 0, 0) self.assertEqual(actual_combine, expected_combine) def test_combine_merge_values_from_centre_of_sheet(self): """Make sure that merges start from the right index when the sheet is not at the top left see issue #1330 """ sheet_data = [ [1, None, None, None], [None, None, "title", None], [None, None, 2, None], ["num", "val", None, 0], ] sheet_metadata = { "properties": {"sheetId": 0}, "merges": [ { "startRowIndex": 0, "endRowIndex": 2, "startColumnIndex": 0, "endColumnIndex": 2, }, { "startRowIndex": 1, "endRowIndex": 2, "startColumnIndex": 2, "endColumnIndex": 4, }, { "startRowIndex": 2, "endRowIndex": 4, "startColumnIndex": 2, "endColumnIndex": 3, }, ], } sheet_data_cropped = [sheet_data[1:] for sheet_data in sheet_data][1:] # [None, "title", None], # [None, 2, None], # ["val", None, 0] expected_combined_cropped = [ [None, "title", "title"], [None, 2, None], ["val", 2, 0], ] actual_combine = utils.combined_merge_values( sheet_metadata, sheet_data_cropped, start_row_index=1, start_col_index=1 ) self.assertEqual(actual_combine, expected_combined_cropped) def test_convert_hex_to_color(self): hexcolor = "#FF7F00" expected_color = {"red": 1, "green": 0.49803922, "blue": 0} # successful convert from hex to color rgbcolor = utils.convert_hex_to_colors_dict(hexcolor) for key, rgbvalue in rgbcolor.items(): self.assertAlmostEqual(rgbvalue, expected_color[key]) # successful ignore alpha rgbcolor = utils.convert_hex_to_colors_dict(f"{hexcolor}42") for key, rgbvalue in rgbcolor.items(): self.assertAlmostEqual(rgbvalue, expected_color[key]) # raise ValueError on invalid hex length with self.assertRaises(ValueError): utils.convert_hex_to_colors_dict("123456abcdef") # raise ValueError on invalid hex characters with self.assertRaises(ValueError): utils.convert_hex_to_colors_dict("axbcde") def test_fill_gaps(self): """test fill_gaps function""" matrix = [ [1, 2, 3, 4], [5, 6, 7, 8], ] expected = [ [1, 2, 3, 4, "", ""], [5, 6, 7, 8, "", ""], ["", "", "", "", "", ""], ] actual = utils.fill_gaps(matrix, 3, 6) self.assertEqual(actual, expected) def test_fill_gaps_with_value(self): """test fill_gaps function""" matrix = [ [1, 2, 3, 4], [5, 6, 7, 8], ] expected = [ [1, 2, 3, 4, "a", "a"], [5, 6, 7, 8, "a", "a"], ["a", "a", "a", "a", "a", "a"], ] actual = utils.fill_gaps(matrix, 3, 6, "a") self.assertEqual(actual, expected) expected = [ [1, 2, 3, 4, 3, 3], [5, 6, 7, 8, 3, 3], [3, 3, 3, 3, 3, 3], ] actual = utils.fill_gaps(matrix, 3, 6, 3) self.assertEqual(actual, expected) def test_fill_gaps_with_non_square_array(self): """test fill_gaps function""" matrix = [ [1, 2, 3, 4], [5, 6, 7, 8], [9], ] expected = [ [1, 2, 3, 4, "", "", ""], [5, 6, 7, 8, "", "", ""], [9, "", "", "", "", "", ""], ["", "", "", "", "", "", ""], ] actual = utils.fill_gaps(matrix, 4, 7) self.assertEqual(actual, expected) def test_is_full_a1_notation(self): """test is_full_a1_notation function""" self.assertTrue(utils.is_full_a1_notation("A1:B2")) self.assertTrue(utils.is_full_a1_notation("Sheet1!A1:B2")) self.assertTrue(utils.is_full_a1_notation("AZ1:BBY2")) self.assertTrue(utils.is_full_a1_notation("AZ142:BBY122")) self.assertFalse(utils.is_full_a1_notation("Sheet1")) self.assertFalse(utils.is_full_a1_notation("A:B")) self.assertFalse(utils.is_full_a1_notation("1:2")) self.assertFalse(utils.is_full_a1_notation("1:")) self.assertFalse(utils.is_full_a1_notation("A1")) self.assertFalse(utils.is_full_a1_notation("A")) self.assertFalse(utils.is_full_a1_notation("1")) self.assertFalse(utils.is_full_a1_notation("")) def test_get_a1_from_absolute_range(self): """test get_a1_from_absolute_range function""" self.assertEqual(utils.get_a1_from_absolute_range("'Sheet1'!A1:B2"), "A1:B2") self.assertEqual(utils.get_a1_from_absolute_range("'Sheet1'!A1:B"), "A1:B") self.assertEqual(utils.get_a1_from_absolute_range("Sheet1!A1:B2"), "A1:B2") self.assertEqual(utils.get_a1_from_absolute_range("A1:B2"), "A1:B2") self.assertEqual(utils.get_a1_from_absolute_range("A1:B"), "A1:B") self.assertEqual(utils.get_a1_from_absolute_range("2"), "2") def test_to_records_empty_args(self): """Test to_records with empty args""" self.assertListEqual(utils.to_records([], []), []) self.assertListEqual(utils.to_records([], [[]]), [{}]) self.assertListEqual(utils.to_records(["a1", "b2"], []), []) self.assertListEqual(utils.to_records(["a1", "b2"], [[]]), [{}]) self.assertListEqual(utils.to_records([], [["a1"]]), [{}]) self.assertListEqual(utils.to_records([], [["a1"], ["a2"]]), [{}, {}]) self.assertListEqual(utils.to_records([], [[], ["a2"]]), [{}, {}]) def test_to_records(self): """Test to_records with values""" headers = ["HA", "HB", "HC"] values = [["A2", "B2", "C2"], ["A3", "B3"], ["", "B4", "C4"]] records = utils.to_records(headers, values) self.assertEqual(len(values), len(records)) for i in range(len(records)): record = records[i] keys = record.keys() # Some rows have shorter values ("A3", "B3") # so the list of keys is smaller # but never bigger than the list of headers self.assertLessEqual(len(keys), len(headers)) # Each resulting key must be part of the given header for key in keys: self.assertIn(key, headers) # given key are unordered # but they must match a value from the given input values self.assertIn(record[key], values[i]) def test_find_table_simple(self): """Test find table with basic case""" values = [ ["A1", "B1", "C1", "D1"], ["", "B2", "C2", "", "E2"], ["", "B3", "C3", "D3", "E3"], ["A4", "", "C4", "D4", "E4"], ] table = utils.find_table( values, "B2", utils.TableDirection.table, ) table_max_row_max_column = utils.find_table( values, "D3", utils.TableDirection.table, ) right = utils.find_table( values, "B2", utils.TableDirection.right, ) down = utils.find_table( values, "B2", utils.TableDirection.down, ) single = utils.find_table(values, "D1", utils.TableDirection.table) no_values = utils.find_table(values, "A2", utils.TableDirection.table) table_values = [ ["B2", "C2"], ["B3", "C3"], ] for rowindex, row in enumerate(table_values): self.assertListEqual(row, table[rowindex]) table_max_row_max_column_values = [ ["D3", "E3"], ["D4", "E4"], ] for rowindex, row in enumerate(table_max_row_max_column): self.assertListEqual(row, table_max_row_max_column_values[rowindex]) right_values = [ ["B2", "C2"], ] for rowindex, row in enumerate(right_values): self.assertListEqual(row, right[rowindex]) bottom_values = [ ["B2"], ["B3"], ] for rowindex, row in enumerate(bottom_values): self.assertListEqual(row, down[rowindex]) self.assertEqual(len(single), 1) self.assertEqual(len(single[0]), 1) self.assertEqual(single[0][0], "D1") self.assertEqual(no_values, []) def test_find_table_inner_gap(self): """Test find table with gap in header""" values = [ ["A1", "B1", "C1", ""], ["A2", "", "C2", ""], ["A3", "B3", "C3", ""], ["", "", "", ""], ] expected_table = [ ["A1", "B1", "C1"], ["A2", "", "C2"], ["A3", "B3", "C3"], ] table = utils.find_table( values, "A1", utils.TableDirection.table, ) for rowindex, row in enumerate(expected_table): self.assertListEqual(row, table[rowindex]) def test_find_table_first_row_gap(self): """Test find table with first cell empty""" values = [ ["A1", "", "C1", ""], ["A2", "B2", "C2", ""], ["A3", "B3", "C3", ""], ["", "", "", ""], ] expected_table = [ ["A1"], ["A2"], ["A3"], ] table = utils.find_table( values, "A1", utils.TableDirection.table, ) for rowindex, row in enumerate(expected_table): self.assertListEqual(row, table[rowindex]) def test_find_table_first_column_gap(self): """Test find table with a gap in first column""" values = [ ["A1", "B1", "C1", ""], ["", "B2", "C2", ""], ["A3", "B3", "C3", ""], ["", "", "", ""], ] expected_table = [ ["A1", "B1", "C1"], ] table = utils.find_table( values, "A1", utils.TableDirection.table, ) for rowindex, row in enumerate(expected_table): self.assertListEqual(row, table[rowindex]) def test_find_table_last_column_gap(self): """Test find table with a gap in last column""" values = [ ["A1", "B1", "C1", ""], ["A2", "B2", "", ""], ["A3", "B3", "C3", ""], ["", "", "", ""], ] expected_table = [ ["A1", "B1", "C1"], ["A2", "B2", ""], ["A3", "B3", "C3"], ] table = utils.find_table( values, "A1", utils.TableDirection.table, ) for rowindex, row in enumerate(expected_table): self.assertListEqual(row, table[rowindex]) def test_find_table_empty_top_left_corner(self): """Test find table with an empty top left cell and empty adjacent cells""" values = [ ["", "", "C1", ""], ["", "B2", "C2", ""], ["", "B3", "C3", ""], ] table = utils.find_table(values, "A1", utils.TableDirection.table) self.assertListEqual(table, [], "resulting table should be empty") ================================================ FILE: tests/worksheet_test.py ================================================ import itertools import pickle # nosec import random import re from inspect import signature from typing import Generator import pytest from pytest import FixtureRequest import gspread from gspread import utils from gspread.client import Client from gspread.exceptions import APIError, GSpreadException from gspread.spreadsheet import Spreadsheet from gspread.worksheet import Worksheet from .conftest import I18N_STR, GspreadTest class WorksheetTest(GspreadTest): """Test for gspread.Worksheet.""" spreadsheet: Spreadsheet sheet: Worksheet @pytest.fixture(scope="function", autouse=True) def init( self: "WorksheetTest", client: Client, request: FixtureRequest ) -> Generator[None, None, None]: name = self.get_temporary_spreadsheet_title(request.node.name) WorksheetTest.spreadsheet = client.create(name) WorksheetTest.sheet = WorksheetTest.spreadsheet.sheet1 yield client.del_spreadsheet(WorksheetTest.spreadsheet.id) @pytest.fixture(autouse=True) @pytest.mark.vcr() def reset_sheet(self): WorksheetTest.sheet.clear() @pytest.mark.vcr() def test_acell(self): cell = self.sheet.acell("A1") self.assertIsInstance(cell, gspread.cell.Cell) @pytest.mark.vcr() def test_attributes(self): self.assertIsInstance(self.sheet.spreadsheet_id, str) self.assertEqual(self.sheet.spreadsheet_id, self.spreadsheet.id) self.assertIsInstance(self.sheet.client, gspread.http_client.HTTPClient) self.assertIsInstance(self.sheet.spreadsheet, gspread.spreadsheet.Spreadsheet) self.assertEqual(self.sheet.spreadsheet, self.spreadsheet) @pytest.mark.vcr() def test_cell(self): cell = self.sheet.cell(1, 1) self.assertIsInstance(cell, gspread.cell.Cell) @pytest.mark.vcr() def test_range(self): cell_range1 = self.sheet.range("A1:A5") cell_range2 = self.sheet.range(1, 1, 5, 1) self.assertEqual(len(cell_range1), 5) for c1, c2 in zip(cell_range1, cell_range2): self.assertIsInstance(c1, gspread.cell.Cell) self.assertIsInstance(c2, gspread.cell.Cell) self.assertTrue(c1.col == c2.col) self.assertTrue(c1.row == c2.row) self.assertTrue(c1.value == c2.value) @pytest.mark.vcr() def test_range_unbounded(self): cell_range1 = self.sheet.range("A1:C") cell_range2 = self.sheet.range(1, 1, self.sheet.row_count, 3) tuples1 = [(c.row, c.col, c.value) for c in cell_range1] tuples2 = [(c.row, c.col, c.value) for c in cell_range2] self.assertSequenceEqual(tuples1, tuples2) @pytest.mark.vcr() def test_range_reversed(self): cell_range1 = self.sheet.range("A1:D4") cell_range2 = self.sheet.range("D4:A1") tuples1 = [(c.row, c.col, c.value) for c in cell_range1] tuples2 = [(c.row, c.col, c.value) for c in cell_range2] self.assertSequenceEqual(tuples1, tuples2) @pytest.mark.vcr() def test_range_get_all_values(self): self.sheet.resize(4, 4) rows = [ ["", "Hi", "Mom", ""], ["My", "Name", "is", "bon"], ["", "", "", ""], ["1", "2", "3", "4"], ] self.sheet.update(rows, "A1:D4") cell_range1 = self.sheet.range() cell_range2 = self.sheet.range("A1:D4") tuples1 = [(c.row, c.col, c.value) for c in cell_range1] tuples2 = [(c.row, c.col, c.value) for c in cell_range2] self.assertSequenceEqual(tuples1, tuples2) @pytest.mark.vcr() def test_get_returns_ValueRange_with_metadata(self): self.sheet.resize(4, 4) rows = [ ["1", "", "", ""], ["", "", "", ""], ["", "", "", ""], ["", "", "", "2"], ] expected_rows = [ ["1"], [], [], ["", "", "", "2"], ] self.sheet.update(rows, "A1:D4") value_range = self.sheet.get("A1:D4") self.assertTrue(isinstance(value_range, gspread.ValueRange)) self.assertEqual(value_range.range, "Sheet1!A1:D4") self.assertEqual(value_range.major_dimension, "ROWS") self.assertEqual(value_range, expected_rows) @pytest.mark.vcr() def test_get_values_returns_padded_get_as_listoflists(self): """This is the only test for get_values. It should be identical to `get` but with default arguments""" self.sheet.resize(4, 4) rows = [ ["1", "", "", ""], ["", "", "", ""], ["", "", "", ""], ["", "", "", "2"], ] self.sheet.update(rows, "A1:D4") values = self.sheet.get_values("A1:D4") values_from_get = self.sheet.get( "A1:D4", return_type=utils.GridRangeType.ListOfLists, pad_values=True ) self.assertEqual(values, rows) self.assertIsInstance(values, list) self.assertEqual(values_from_get, rows) @pytest.mark.vcr() def test_get_values_can_emulate_get_with_kwargs(self): """Tests that get_values(pad_values=False, return_type=utils.GridRangeType.ValueRange) is the same as get""" self.sheet.resize(4, 4) rows = [ ["1", "", "", ""], ["", "", "", ""], ["", "", "", ""], ["", "", "", "2"], ] self.sheet.update(rows, "A1:D4") values_get = self.sheet.get("A1:D4") values_emulate_get = self.sheet.get_values( "A1:D4", pad_values=False, return_type=utils.GridRangeType.ValueRange, ) self.assertEqual(values_get, values_emulate_get) @pytest.mark.vcr() def test_get_values_and_combine_merged_cells(self): self.sheet.resize(4, 4) sheet_data = [ ["1", "", "", ""], ["", "", "title", ""], ["", "", "2", ""], ["num", "val", "", "0"], ] self.sheet.update(sheet_data, "A1:D4") self.sheet.merge_cells("A1:B2") self.sheet.merge_cells("C2:D2") self.sheet.merge_cells("C3:C4") expected_merge = [ ["1", "1", "", ""], ["1", "1", "title", "title"], ["", "", "2", ""], ["num", "val", "2", "0"], ] values = self.sheet.get_values() values_with_merged = self.sheet.get_values(combine_merged_cells=True) self.assertEqual(values, sheet_data) self.assertEqual(values_with_merged, expected_merge) # test with cell address values_with_merged = self.sheet.get_values("A1:D4", combine_merged_cells=True) self.assertEqual(values_with_merged, expected_merge) @pytest.mark.vcr() def test_batch_merged_cells(self): self.sheet.resize(4, 4) sheet_data = [ ["1", "", "", ""], ["", "", "title", ""], ["", "", "2", ""], ["num", "val", "", "0"], ] self.sheet.update(sheet_data, "A1:D4") self.sheet.batch_merge( [ {"range": "A1:B2"}, {"range": "C2:D2"}, {"range": "C3:C4"}, ] ) expected_merge = [ ["1", "1", "", ""], ["1", "1", "title", "title"], ["", "", "2", ""], ["num", "val", "2", "0"], ] values = self.sheet.get_values() values_with_merged = self.sheet.get_values(combine_merged_cells=True) self.assertEqual(values, sheet_data) self.assertEqual(values_with_merged, expected_merge) # test with cell address values_with_merged = self.sheet.get_values("A1:D4", combine_merged_cells=True) self.assertEqual(values_with_merged, expected_merge) @pytest.mark.vcr() def test_get_values_with_args_or_kwargs(self): # test that get_values accepts args and kwargs self.sheet.resize(4, 4) sheet_data = [ ["1", "", "", ""], ["x", "y", "title", ""], ["", "", "2", ""], ["num", "val", "", "0"], ] self.sheet.update(sheet_data, "A1:D4") data_args = self.sheet.get_values( "A1:D4", None, utils.ValueRenderOption.formatted, ) data_kwargs = self.sheet.get_values( range_name="A1:D4", major_dimension=None, value_render_option=utils.ValueRenderOption.formatted, ) self.assertEqual(data_args, sheet_data) self.assertEqual(data_kwargs, sheet_data) @pytest.mark.vcr() def test_get_values_merge_cells_outside_of_range(self): self.sheet.resize(4, 4) sheet_data = [ ["1", "2", "4", ""], ["down", "", "", ""], ["", "", "2", ""], ["num", "val", "", "0"], ] self.sheet.update(sheet_data, "A1:D4") self.sheet.merge_cells("A2:A3") self.sheet.merge_cells("C1:D2") REQUEST_RANGE = "A1:B2" expected_values = [ ["1", "2"], ["down", ""], ] values_with_merged = self.sheet.get_values( REQUEST_RANGE, combine_merged_cells=True ) self.assertEqual(values_with_merged, expected_values) @pytest.mark.vcr() def test_get_values_merge_cells_from_centre_of_sheet(self): self.sheet.resize(4, 3) sheet_data = [ ["1", "2", "4"], ["down", "up", ""], ["", "", "2"], ["num", "val", ""], ] self.sheet.update(sheet_data, "A1:C4") self.sheet.merge_cells("A2:A3") self.sheet.merge_cells("C1:C2") REQUEST_RANGE = "B1:C3" expected_values = [ ["2", "4"], ["up", "4"], ["", "2"], ] values_with_merged = self.sheet.get_values( REQUEST_RANGE, combine_merged_cells=True ) self.assertEqual(values_with_merged, expected_values) @pytest.mark.vcr() def test_get_values_merge_cells_with_named_range(self): self.sheet.resize(4, 3) sheet_data = [ ["1", "2", "4"], ["down", "up", ""], ["", "", "2"], ["num", "val", ""], ] self.sheet.update(sheet_data, "A1:C4") self.sheet.merge_cells("A2:A3") self.sheet.merge_cells("C1:C2") request_range = "NamedRange" self.sheet.define_named_range("B1:C3", request_range) expected_values = [ ["2", "4"], ["up", "4"], ["", "2"], ] values_with_merged = self.sheet.get_values( request_range, combine_merged_cells=True ) self.assertEqual(values_with_merged, expected_values) @pytest.mark.vcr() def test_get_merge_cells_and_unmerge_cells(self): self.sheet.resize(4, 4) sheet_data = [ ["1", "", "2", "3"], ["", "", "", ""], ["", "4", "", ""], ["", "5", "", ""], ] self.sheet.update(sheet_data, "A1:D4") self.sheet.merge_cells("A1:B2", utils.MergeType.merge_all) self.sheet.merge_cells("C1:D2", utils.MergeType.merge_columns) self.sheet.merge_cells("B3:C4", utils.MergeType.merge_rows) REQUEST_RANGE = "A1:D4" expected_values = [ ["1", "1", "2", "3"], ["1", "1", "2", "3"], ["", "4", "4", ""], ["", "5", "5", ""], ] values_with_merged = self.sheet.get_values( REQUEST_RANGE, combine_merged_cells=True ) self.assertEqual(values_with_merged, expected_values) self.sheet.unmerge_cells("A1:D4") expected_values = sheet_data values_with_merged = self.sheet.get_values( REQUEST_RANGE, combine_merged_cells=True ) self.assertEqual(values_with_merged, expected_values) @pytest.mark.vcr() def test_get_values_and_maintain_size(self): """test get_values with maintain_size=True""" self.sheet.resize(5, 5) sheet_data = [ ["1", "2", "", "", ""], ["3", "4", "", "", ""], ["5", "6", "", "", ""], ["", "", "", "", ""], ["", "", "", "", ""], ] request_range = "A1:D4" expected_values = [ ["1", "2", "", ""], ["3", "4", "", ""], ["5", "6", "", ""], ["", "", "", ""], ] self.sheet.update(sheet_data, "A1:E5") values = self.sheet.get_values(request_range, maintain_size=True) self.assertEqual(values, expected_values) @pytest.mark.vcr() def test_update_acell(self): sg = self._sequence_generator() value = next(sg) self.sheet.update_acell("A2", value) self.assertEqual(self.sheet.acell("A2").value, value) @pytest.mark.vcr() def test_update_cell(self): sg = self._sequence_generator() value = next(sg) self.sheet.update_cell(1, 2, value) self.assertEqual(self.sheet.cell(1, 2).value, value) self.sheet.update_cell(1, 2, 42) self.assertEqual(self.sheet.cell(1, 2).value, "42") self.sheet.update_cell(1, 2, "0042") self.assertEqual(self.sheet.cell(1, 2).value, "42") self.sheet.update_cell(1, 2, 42.01) self.assertEqual(self.sheet.cell(1, 2).value, "42.01") self.sheet.update_cell(1, 2, "Артур") self.assertEqual(self.sheet.cell(1, 2).value, "Артур") @pytest.mark.vcr() def test_update_cell_multiline(self): sg = self._sequence_generator() value = next(sg) value = "{}\n{}".format(value, value) self.sheet.update_cell(1, 2, value) self.assertEqual(self.sheet.cell(1, 2).value, value) @pytest.mark.vcr() def test_update_cell_unicode(self): self.sheet.update_cell(1, 1, I18N_STR) cell = self.sheet.cell(1, 1) self.assertEqual(cell.value, I18N_STR) @pytest.mark.vcr() def test_update_cells(self): sg = self._sequence_generator() list_len = 10 value_list = [next(sg) for i in range(list_len)] # Test multiline value_list[0] = "{}\n{}".format(value_list[0], value_list[0]) range_label = "A1:A%s" % list_len cell_list = self.sheet.range(range_label) for c, v in zip(cell_list, value_list): c.value = v self.sheet.update_cells(cell_list) cell_list = self.sheet.range(range_label) for c, v in zip(cell_list, value_list): self.assertEqual(c.value, v) @pytest.mark.vcr() def test_update_cells_unicode(self): cell = self.sheet.cell(1, 1) cell.value = I18N_STR self.sheet.update_cells([cell]) cell = self.sheet.cell(1, 1) self.assertEqual(cell.value, I18N_STR) @pytest.mark.vcr() def test_update_title(self): res = self.spreadsheet.fetch_sheet_metadata() title_before = res["sheets"][0]["properties"]["title"] title_before_prop = self.sheet.title new_title = "I'm a new title" self.sheet.update_title(new_title) res = self.spreadsheet.fetch_sheet_metadata() title_after = res["sheets"][0]["properties"]["title"] title_after_prop = self.sheet.title self.assertEqual(title_after, new_title) self.assertEqual(title_after_prop, new_title) self.assertNotEqual(title_before, new_title) self.assertNotEqual(title_before_prop, new_title) @pytest.mark.vcr() def test_update_tab_color(self): # Set the color. # Get the color. # Assert the color is the set and changed by google. pink_color = { "red": 1.0, "green": 0.0, "blue": 0.49803922, } pink_color_hex = utils.convert_colors_to_hex_value(**pink_color) self.assertEqual(pink_color_hex, "#FF007F") params = {"fields": "sheets.properties.tabColorStyle"} res = self.spreadsheet.fetch_sheet_metadata(params=params) color_before = ( res["sheets"][0]["properties"] .get("tabColorStyle", {}) .get("rgbColor", None) ) color_param_before = self.sheet.tab_color color_hex_before = self.sheet.get_tab_color() self.sheet.update_tab_color(pink_color_hex) res = self.spreadsheet.fetch_sheet_metadata(params=params) color_param_after = self.sheet.tab_color color_hex_after = self.sheet.get_tab_color() # check that the value returned from google # and the worksheet param convert back to the hex value. self.assertEqual(color_before, None) self.assertEqual(color_param_before, None) self.assertEqual(color_hex_before, None) self.assertEqual(color_param_after, "#FF007F") self.assertEqual(color_hex_after, "#FF007F") @pytest.mark.vcr() def test_clear_tab_color(self): # Set the color. # Clear the color. # Assert that the color is None. pink_color = "#FF007F" params = {"fields": "sheets.properties.tabColorStyle"} res = self.spreadsheet.fetch_sheet_metadata(params=params) color_before = ( res["sheets"][0]["properties"] .get("tabColorStyle", {}) .get("rgbColor", None) ) color_param_before = self.sheet.tab_color self.sheet.update_tab_color(pink_color) self.sheet.clear_tab_color() res = self.spreadsheet.fetch_sheet_metadata(params=params) color_after = ( res["sheets"][0]["properties"] .get("tabColorStyle", {}) .get("rgbColor", None) ) color_param_after = self.sheet.tab_color self.assertEqual(color_before, None) self.assertEqual(color_param_before, None) self.assertEqual(color_after, None) self.assertEqual(color_param_after, None) @pytest.mark.vcr() def test_update_cells_noncontiguous(self): sg = self._sequence_generator() num_rows = 6 num_cols = 4 rows = [[next(sg) for j in range(num_cols)] for i in range(num_rows)] cell_list = self.sheet.range("A1:D6") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) # Re-fetch cells cell_list = self.sheet.range("A1:D6") test_values = [c.value for c in cell_list] top_left = cell_list[0] bottom_right = cell_list[-1] top_left.value = top_left_value = next(sg) + " top_left" bottom_right.value = bottom_right_value = next(sg) + " bottom_right" self.sheet.update_cells([top_left, bottom_right]) cell_list = self.sheet.range("A1:D6") read_values = [c.value for c in cell_list] test_values[0] = top_left_value test_values[-1] = bottom_right_value self.assertEqual(test_values, read_values) @pytest.mark.vcr() def test_update_cell_objects(self): test_values = ["cell row 1, col 2", "cell row 2 col 1"] cell_list = [ gspread.cell.Cell(1, 2, test_values[0]), gspread.cell.Cell(2, 1, test_values[1]), ] self.sheet.update_cells(cell_list) # Re-fetch cells cell_list = (self.sheet.cell(1, 2), self.sheet.cell(2, 1)) read_values = [c.value for c in cell_list] self.assertEqual(test_values, read_values) @pytest.mark.vcr() def test_resize(self): add_num = 10 new_rows = self.sheet.row_count + add_num def get_grid_props(): sheets = self.spreadsheet.fetch_sheet_metadata()["sheets"] return utils.finditem( lambda x: x["properties"]["sheetId"] == self.sheet.id, sheets )["properties"]["gridProperties"] self.sheet.add_rows(add_num) grid_props = get_grid_props() self.assertEqual(grid_props["rowCount"], new_rows) self.assertEqual(self.sheet.row_count, new_rows) new_cols = self.sheet.col_count + add_num self.sheet.add_cols(add_num) grid_props = get_grid_props() self.assertEqual(grid_props["columnCount"], new_cols) self.assertEqual(self.sheet.col_count, new_cols) new_rows -= add_num new_cols -= add_num self.sheet.resize(new_rows, new_cols) grid_props = get_grid_props() self.assertEqual(grid_props["rowCount"], new_rows) self.assertEqual(grid_props["columnCount"], new_cols) self.assertEqual(self.sheet.row_count, new_rows) self.assertEqual(self.sheet.col_count, new_cols) @pytest.mark.vcr() def test_sort(self): rows = [ ["Apple", "2012", "4"], ["Banana", "2013", "3"], ["Canada", "2007", "1"], ["Dinosaur", "2013", "6"], ["Elephant", "2019", "2"], ["Fox", "2077", "5"], ] self.sheet.resize(6, 3) cell_list = self.sheet.range("A1:C6") for c, v in zip(cell_list, itertools.chain(*rows)): c.value = v self.sheet.update_cells(cell_list) specs = [ (3, "asc"), ] self.sheet.sort(*specs, range="A1:C6") rows = sorted(rows, key=lambda x: int(x[2]), reverse=False) self.assertEqual(self.sheet.get_all_values(), rows) specs = [ (1, "des"), ] self.sheet.sort(*specs, range="A1:C6") rows = sorted(rows, key=lambda x: x[0], reverse=True) self.assertEqual(self.sheet.get_all_values(), rows) specs = [ (2, "asc"), (3, "asc"), ] self.sheet.sort(*specs, range="A1:C6") rows = sorted(rows, key=lambda x: (x[1], int(x[2])), reverse=False) self.assertEqual(self.sheet.get_all_values(), rows) specs = [ (3, "asc"), ] self.sheet.sort(*specs) rows = sorted(rows, key=lambda x: int(x[2]), reverse=False) self.assertEqual(self.sheet.get_all_values(), rows) specs = [ (3, "des"), ] self.sheet._properties["gridProperties"]["frozenRowCount"] = 1 self.sheet.sort(*specs) rows = [rows[0]] + sorted(rows[1:], key=lambda x: int(x[2]), reverse=True) self.assertEqual(self.sheet.get_all_values(), rows) @pytest.mark.vcr() def test_freeze(self): freeze_cols = 1 freeze_rows = 2 def get_grid_props(): sheets = self.spreadsheet.fetch_sheet_metadata()["sheets"] return utils.finditem( lambda x: x["properties"]["sheetId"] == self.sheet.id, sheets )["properties"]["gridProperties"] self.sheet.freeze(freeze_rows) grid_props = get_grid_props() self.assertEqual(grid_props["frozenRowCount"], freeze_rows) self.assertEqual(self.sheet.frozen_row_count, freeze_rows) self.sheet.freeze(cols=freeze_cols) grid_props = get_grid_props() self.assertEqual(grid_props["frozenColumnCount"], freeze_cols) self.assertEqual(self.sheet.frozen_col_count, freeze_cols) self.sheet.freeze(0, 0) grid_props = get_grid_props() self.assertTrue("frozenRowCount" not in grid_props) self.assertTrue("frozenColumnCount" not in grid_props) self.assertEqual(self.sheet.frozen_row_count, 0) self.assertEqual(self.sheet.frozen_col_count, 0) @pytest.mark.vcr() def test_basic_filters(self): def get_sheet(): sheets = self.spreadsheet.fetch_sheet_metadata()["sheets"] return utils.finditem( lambda x: x["properties"]["sheetId"] == self.sheet.id, sheets ) def get_basic_filter_range(): return get_sheet()["basicFilter"]["range"] self.sheet.resize(20, 20) self.sheet.set_basic_filter() filter_range = get_basic_filter_range() self.assertEqual(filter_range["startRowIndex"], 0) self.assertEqual(filter_range["startColumnIndex"], 0) self.assertEqual(filter_range["endRowIndex"], 20) self.assertEqual(filter_range["endColumnIndex"], 20) self.sheet.set_basic_filter("B1:C2") filter_range = get_basic_filter_range() self.assertEqual(filter_range["startRowIndex"], 0) self.assertEqual(filter_range["startColumnIndex"], 1) self.assertEqual(filter_range["endRowIndex"], 2) self.assertEqual(filter_range["endColumnIndex"], 3) self.sheet.set_basic_filter(1, 2, 2, 3) filter_range = get_basic_filter_range() self.assertEqual(filter_range["startRowIndex"], 0) self.assertEqual(filter_range["startColumnIndex"], 1) self.assertEqual(filter_range["endRowIndex"], 2) self.assertEqual(filter_range["endColumnIndex"], 3) self.sheet.clear_basic_filter() self.assertTrue("basicFilter" not in get_sheet()) @pytest.mark.vcr() def test_find(self): sg = self._sequence_generator() value = next(sg) self.sheet.update_cell(2, 10, value) self.sheet.update_cell(2, 11, value) cell = self.sheet.find(value) self.assertEqual(cell.value, value) value2 = next(sg) value = "{}o_O{}".format(value, value2) self.sheet.update_cell(2, 11, value) o_O_re = re.compile("[a-z]_[A-Z]%s" % value2) cell = self.sheet.find(o_O_re) self.assertEqual(cell.value, value) not_found = self.sheet.find("does not exists") self.assertIs( not_found, None, "find should return 'None' when value is not found" ) lower_value = "camelcase" upper_value = "CamelCase" self.sheet.update_cell(2, 10, lower_value) self.sheet.update_cell(2, 11, upper_value) cell = self.sheet.find(upper_value, case_sensitive=False) self.assertEqual(cell.value, lower_value) @pytest.mark.vcr() def test_findall(self): list_len = 10 range_label = "A1:A%s" % list_len cell_list = self.sheet.range(range_label) sg = self._sequence_generator() value = next(sg) for c in cell_list: c.value = value self.sheet.update_cells(cell_list) result_list = self.sheet.findall(value) self.assertEqual(list_len, len(result_list)) for c in result_list: self.assertEqual(c.value, value) cell_list = self.sheet.range(range_label) value = next(sg) for c in cell_list: char = chr(random.randrange(ord("a"), ord("z"))) c.value = "{}{}_{}{}".format(c.value, char, char.upper(), value) self.sheet.update_cells(cell_list) o_O_re = re.compile("[a-z]_[A-Z]%s" % value) result_list = self.sheet.findall(o_O_re) self.assertEqual(list_len, len(result_list)) @pytest.mark.vcr() def test_get_all_values(self): self.sheet.resize(4, 4) # put in new values rows = [ ["A1", "B1", "", "D1"], ["", "b2", "", ""], ["", "", "", ""], ["A4", "B4", "", "D4"], ] cell_list = self.sheet.range("A1:D1") cell_list.extend(self.sheet.range("A2:D2")) cell_list.extend(self.sheet.range("A3:D3")) cell_list.extend(self.sheet.range("A4:D4")) for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) # read values with get_all_values, get a list of lists read_data = self.sheet.get_all_values() # values should match with original lists self.assertEqual(read_data, rows) @pytest.mark.vcr() def test_get_all_values_title_is_a1_notation(self): self.sheet.resize(4, 4) # renames sheet to contain single and double quotes self.sheet.update_title("D3") # put in new values rows = [ ["A1", "B1", "", "D1"], ["", "b2", "", ""], ["", "", "", ""], ["A4", "B4", "", "d4"], ] cell_list = self.sheet.range("A1:D1") cell_list.extend(self.sheet.range("A2:D2")) cell_list.extend(self.sheet.range("A3:D3")) cell_list.extend(self.sheet.range("A4:D4")) for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) # read values with get_all_values, get a list of lists read_data = self.sheet.get_all_values() # values should match with original lists self.assertEqual(read_data, rows) @pytest.mark.vcr() def test_get_all_values_date_time_render_options(self): self.sheet.resize(2, 4) # put in new values rows = [ ["=4/2", "2020-01-01", "string", 53], ["=3/2", 0.12, "1999-01-02", ""], ] cell_list = self.sheet.range("A1:D2") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells( cell_list, value_input_option=utils.ValueInputOption.user_entered ) # with value_render as unformatted # date_time_render as serial_number read_records = self.sheet.get_values( value_render_option=utils.ValueRenderOption.unformatted, date_time_render_option=utils.DateTimeOption.serial_number, ) expected_values = [ [2, 43831, "string", 53], [3 / 2, 0.12, 36162, ""], ] self.assertEqual(read_records, expected_values) # with value_render as unformatted # date_time_render as formatted_string read_records = self.sheet.get_values( value_render_option=utils.ValueRenderOption.unformatted, date_time_render_option=utils.DateTimeOption.formatted_string, ) expected_values = [ [2, "2020-01-01", "string", 53], [3 / 2, 0.12, "1999-01-02", ""], ] self.assertEqual(read_records, expected_values) # with value_render as formatted (overrides date_time_render) # date_time_render as serial_number read_records = self.sheet.get_values( value_render_option=utils.ValueRenderOption.formatted, date_time_render_option=utils.DateTimeOption.serial_number, ) expected_values = [ ["2", "2020-01-01", "string", "53"], ["1.5", "0.12", "1999-01-02", ""], ] self.assertEqual(read_records, expected_values) # with value_render as formatted (overrides date_time_render) # date_time_render as formatted_string read_records = self.sheet.get_values( value_render_option=utils.ValueRenderOption.formatted, date_time_render_option=utils.DateTimeOption.formatted_string, ) expected_values = [ ["2", "2020-01-01", "string", "53"], ["1.5", "0.12", "1999-01-02", ""], ] self.assertEqual(read_records, expected_values) @pytest.mark.vcr() def test_get_all_records(self): self.sheet.resize(4, 4) # put in new values rows = [ ["A1", "B1", "", "D1"], [1, "b2", 1.45, ""], ["", "", "", ""], ["A4", 0.4, "", 4], ] self.sheet.update(rows, "A1:D4") # first, read empty strings to empty strings read_records = self.sheet.get_all_records() d0 = dict(zip(rows[0], rows[1])) d1 = dict(zip(rows[0], rows[2])) d2 = dict(zip(rows[0], rows[3])) self.assertEqual(read_records[0], d0) self.assertEqual(read_records[1], d1) self.assertEqual(read_records[2], d2) # then, read empty strings to zeros read_records = self.sheet.get_all_records(empty2zero=True) d1 = dict(zip(rows[0], (0, 0, 0, 0))) self.assertEqual(read_records[1], d1) # then, read empty strings to None read_records = self.sheet.get_all_records(default_blank=None) d1 = dict(zip(rows[0], (None, None, None, None))) self.assertEqual(read_records[1], d1) # then, read empty strings to something else read_records = self.sheet.get_all_records(default_blank="foo") d1 = dict(zip(rows[0], ("foo", "foo", "foo", "foo"))) self.assertEqual(read_records[1], d1) @pytest.mark.vcr() def test_get_all_records_different_header(self): self.sheet.resize(6, 4) # put in new values rows = [ ["", "", "", ""], ["", "", "", ""], ["A1", "B1", "", "D1"], [1, "b2", 1.45, ""], ["", "", "", ""], ["A4", 0.4, "", 4], ] self.sheet.update(rows, "A1:D6") # first, read empty strings to empty strings read_records = self.sheet.get_all_records(head=3) d0 = dict(zip(rows[2], rows[3])) d1 = dict(zip(rows[2], rows[4])) d2 = dict(zip(rows[2], rows[5])) self.assertEqual(read_records[0], d0) self.assertEqual(read_records[1], d1) self.assertEqual(read_records[2], d2) # then, read empty strings to zeros read_records = self.sheet.get_all_records(empty2zero=True, head=3) d1 = dict(zip(rows[2], (0, 0, 0, 0))) self.assertEqual(read_records[1], d1) # then, read empty strings to None read_records = self.sheet.get_all_records(default_blank=None, head=3) d1 = dict(zip(rows[2], (None, None, None, None))) self.assertEqual(read_records[1], d1) # then, read empty strings to something else read_records = self.sheet.get_all_records(default_blank="foo", head=3) d1 = dict(zip(rows[2], ("foo", "foo", "foo", "foo"))) self.assertEqual(read_records[1], d1) @pytest.mark.vcr() def test_get_all_records_value_render_options(self): self.sheet.resize(2, 4) # put in new values rows = [ ["=4/2", "2020-01-01", "string", 53], ["=3/2", 0.12, "1999-01-02", ""], ] cell_list = self.sheet.range("A1:D2") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells( cell_list, value_input_option=utils.ValueInputOption.user_entered ) # default, formatted read read_records = self.sheet.get_all_records() expected_keys = ["2", "2020-01-01", "string", "53"] expected_values = [3 / 2, 0.12, "1999-01-02", ""] d0 = dict(zip(expected_keys, expected_values)) self.assertEqual(read_records[0], d0) # unformatted read read_records = self.sheet.get_all_records( value_render_option=utils.ValueRenderOption.unformatted ) expected_keys = [2, 43831, "string", 53] expected_values = [3 / 2, 0.12, 36162, ""] d0 = dict(zip(expected_keys, expected_values)) self.assertEqual(read_records[0], d0) # formula read read_records = self.sheet.get_all_records( value_render_option=utils.ValueRenderOption.formula ) expected_keys = ["=4/2", 43831, "string", 53] expected_values = ["=3/2", 0.12, 36162, ""] d0 = dict(zip(expected_keys, expected_values)) self.assertEqual(read_records[0], d0) @pytest.mark.vcr() def test_get_all_records_duplicate_keys(self): self.sheet.resize(4, 4) # put in new values rows = [ ["A1", "faff", "C3", "faff"], [1, "b2", 1.45, ""], ["", "", "", ""], ["A4", 0.4, "", 4], ] self.sheet.update(rows, "A1:D4") # check no expected headers with pytest.raises(GSpreadException): self.sheet.get_all_records() # check non uniques expected headers expected_headers = ["A1", "A1"] with pytest.raises(GSpreadException): self.sheet.get_all_records(expected_headers=expected_headers) # check extra headers expected_headers = ["A1", "E5"] with pytest.raises(GSpreadException): self.sheet.get_all_records(expected_headers=expected_headers) # check nominal case. expected_headers = ["A1", "C3"] read_records = self.sheet.get_all_records( expected_headers=expected_headers, ) expected_values_1 = dict(zip(rows[0], rows[1])) expected_values_2 = dict(zip(rows[0], rows[2])) expected_values_3 = dict(zip(rows[0], rows[3])) self.assertDictEqual(expected_values_1, read_records[0]) self.assertDictEqual(expected_values_2, read_records[1]) self.assertDictEqual(expected_values_3, read_records[2]) @pytest.mark.vcr() def test_get_all_records_with_blank_final_headers(self): # regression test for #590, #629, #1354 self.sheet.resize(4, 4) # put in new values rows = [ ["A1", "faff", "", ""], [1, "b2", 1.45, ""], ["", "", "", ""], ["A4", 0.4, "", 4], ] self.sheet.update(rows, "A1:D4") with pytest.raises(GSpreadException): self.sheet.get_all_records() expected_headers = [] read_records = self.sheet.get_all_records( expected_headers=expected_headers, ) expected_values_1 = dict(zip(rows[0], rows[1])) expected_values_2 = dict(zip(rows[0], rows[2])) expected_values_3 = dict(zip(rows[0], rows[3])) self.assertDictEqual(expected_values_1, read_records[0]) self.assertDictEqual(expected_values_2, read_records[1]) self.assertDictEqual(expected_values_3, read_records[2]) @pytest.mark.vcr() def test_get_all_records_with_keys_blank(self): # regression test for #1355 self.sheet.resize(4, 4) rows = [ ["", "", "", ""], ["c", "d", "e", "f"], ["g", "h", "i", "j"], ["k", "l", "m", ""], ] cell_list = self.sheet.range("A1:D4") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) # duplicate headers with pytest.raises(GSpreadException): self.sheet.get_all_records() # ignore duplicate headers read_records = self.sheet.get_all_records(expected_headers=[]) expected_values_1 = dict(zip(rows[0], rows[1])) expected_values_2 = dict(zip(rows[0], rows[2])) expected_values_3 = dict(zip(rows[0], rows[3])) self.assertDictEqual(expected_values_1, read_records[0]) self.assertDictEqual(expected_values_2, read_records[1]) self.assertDictEqual(expected_values_3, read_records[2]) @pytest.mark.vcr() def test_get_all_records_with_all_values_blank(self): # regression test for #1355 self.sheet.resize(4, 4) rows = [ ["a", "b", "c", "d"], ["", "", "", ""], ["", "", "", ""], ["", "", "", ""], ] self.sheet.update(rows, "A1:D4") # I ask for get_all_records() # I want [] read_records_nofirst_nolast = self.sheet.get_all_records() self.assertEqual(len(read_records_nofirst_nolast), 0) @pytest.mark.vcr() def test_get_all_records_with_some_values_blank(self): # regression test for #1363 self.sheet.resize(6, 4) rows = [ ["a", "b", "c", "d"], ["x", "y", "z", ""], ["", "", "", ""], ["", "", "", ""], ["", "", "", ""], ["", "", "", ""], ] self.sheet.update(rows, "A1:D6") read_records = self.sheet.get_all_records() expected_values_1 = dict(zip(rows[0], rows[1])) self.assertEqual(len(read_records), 1) self.assertDictEqual(expected_values_1, read_records[0]) @pytest.mark.vcr() def test_get_all_records_numericise_unformatted(self): self.sheet.resize(2, 4) # put in new values, made from three lists rows = [ ["A", "", "C", "3_1_0"], ["=3/2", 0.12, "", "3_2_1"], ] cell_list = self.sheet.range("A1:D2") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells( cell_list, value_input_option=utils.ValueInputOption.user_entered ) read_records = self.sheet.get_all_records( default_blank="empty", allow_underscores_in_numeric_literals=True, value_render_option=utils.ValueRenderOption.unformatted, ) expected_values = [3 / 2, 0.12, "empty", 321] d0 = dict(zip(rows[0], expected_values)) self.assertEqual(read_records[0], d0) @pytest.mark.vcr() def test_get_all_records_pad_one_key(self): self.sheet.resize(2, 4) rows = [ ["A1", "B1", "C1"], [1, 2, 3, 4], ] self.sheet.update(rows, "A1:D2") read_records = self.sheet.get_all_records(head=1) rows[0].append("") d0 = dict(zip(rows[0], rows[1])) records_list = [d0] self.assertEqual(read_records, records_list) @pytest.mark.vcr() def test_get_all_records_pad_values(self): self.sheet.resize(2, 4) rows = [ ["A1", "B1", "C1"], [1, 2], ] self.sheet.update(rows, "A1:C2") read_records = self.sheet.get_all_records(head=1) rows[1].append("") d0 = dict(zip(rows[0], rows[1])) records_list = [d0] self.assertEqual(read_records, records_list) @pytest.mark.vcr() def test_get_all_records_pad_more_than_one_key(self): self.sheet.resize(2, 4) rows = [ ["A1", "B1"], [1, 2, 3, 4], ] self.sheet.update(rows, "A1:D2") with pytest.raises(GSpreadException): self.sheet.get_all_records(head=1) @pytest.mark.vcr() def test_append_row(self): row_num_before = self.sheet.row_count sg = self._sequence_generator() value_list = [next(sg) for i in range(10)] self.sheet.append_row(value_list) read_values = self.sheet.row_values(1) row_num_after = self.sheet.row_count self.assertEqual(value_list, read_values) self.assertEqual(row_num_before + 1, row_num_after) @pytest.mark.vcr() def test_append_row_with_empty_value(self): sg = self._sequence_generator() value_list = [next(sg) for i in range(3)] value_list[1] = "" # Skip one cell to create two "tables" as in #537 self.sheet.append_row(value_list) # Append it again self.sheet.append_row(value_list) # This should produce a shift in rows as in #537 shifted_value_list = ["", ""] + value_list read_values = self.sheet.row_values(2) self.assertEqual(shifted_value_list, read_values) @pytest.mark.vcr() def test_append_row_with_empty_value_and_table_range(self): sg = self._sequence_generator() value_list = [next(sg) for i in range(3)] value_list[1] = "" # Skip one cell to create two "tables" as in #537 self.sheet.append_row(value_list) # Append it again self.sheet.append_row(value_list, table_range="A1") # This should produce no shift in rows # contrary to test_append_row_with_empty_value read_values = self.sheet.row_values(2) self.assertEqual(value_list, read_values) @pytest.mark.vcr() def test_insert_row(self): sg = self._sequence_generator() num_rows = 6 num_cols = 4 rows = [[next(sg) for j in range(num_cols)] for i in range(num_rows)] cell_list = self.sheet.range("A1:D6") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) new_row_values = [next(sg) for i in range(num_cols + 4)] row_count_before = self.sheet.row_count self.sheet.insert_row(new_row_values, 2) read_values = self.sheet.row_values(2) row_count_after = self.sheet.row_count self.assertEqual(new_row_values, read_values) self.assertEqual(row_count_before + 1, row_count_after) formula = "=1+1" self.sheet.update_acell("B2", formula) values = [next(sg) for i in range(num_cols + 4)] self.sheet.insert_row(values, 1) b3 = self.sheet.acell("B3", value_render_option=utils.ValueRenderOption.formula) self.assertEqual(b3.value, formula) new_row_values = [next(sg) for i in range(num_cols + 4)] with pytest.raises(GSpreadException): self.sheet.insert_row(new_row_values, 1, inherit_from_before=True) @pytest.mark.vcr() def test_insert_cols(self): sequence_generator = self._sequence_generator() num_rows = 6 num_cols = 4 rows = [ [next(sequence_generator) for j in range(num_cols)] for i in range(num_rows) ] cell_list = self.sheet.range("A1:D6") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) new_col_values = [ [next(sequence_generator) for i in range(num_cols)] for i in range(2) ] col_count_before = self.sheet.col_count self.sheet.insert_cols(new_col_values, 2) read_values_1 = self.sheet.col_values(2) read_values_2 = self.sheet.col_values(3) read_values = [read_values_1, read_values_2] col_count_after = self.sheet.col_count self.assertEqual(col_count_before + 2, col_count_after) self.assertEqual(new_col_values, read_values) @pytest.mark.vcr() def test_delete_row(self): sequence_generator = self._sequence_generator() for i in range(5): value_list = [next(sequence_generator) for i in range(10)] self.sheet.append_row(value_list) prev_row = self.sheet.row_values(1) next_row = self.sheet.row_values(3) row_count_before = self.sheet.row_count self.sheet.delete_rows(2) row_count_after = self.sheet.row_count self.assertEqual(row_count_before - 1, row_count_after) self.assertEqual(self.sheet.row_values(1), prev_row) self.assertEqual(self.sheet.row_values(2), next_row) @pytest.mark.vcr() def test_delete_cols(self): sequence_generator = self._sequence_generator() num_rows = 6 num_cols = 4 rows = [ [next(sequence_generator) for j in range(num_cols)] for i in range(num_rows) ] cell_list = self.sheet.range("A1:D6") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) col_count_before = self.sheet.col_count first_col_before = self.sheet.col_values(1) fourth_col_before = self.sheet.col_values(4) self.sheet.delete_columns(2, 3) col_count_after = self.sheet.col_count first_col_after = self.sheet.col_values(1) second_col_after = self.sheet.col_values(2) self.assertEqual(col_count_before - 2, col_count_after) self.assertEqual(first_col_before, first_col_after) self.assertEqual(fourth_col_before, second_col_after) @pytest.mark.vcr() def test_clear(self): rows = [ ["", "", "", ""], ["", "", "", ""], ["A1", "B1", "", "D1"], [1, "b2", 1.45, ""], ["", "", "", ""], ["A4", 0.4, "", 4], ] cell_list = self.sheet.range("A1:D6") for cell, value in zip(cell_list, itertools.chain(*rows)): cell.value = value self.sheet.update_cells(cell_list) self.sheet.clear() self.assertEqual(self.sheet.get_all_values(), [[]]) @pytest.mark.vcr() def test_update_and_get(self): values = [ ["A1", "B1", "", "D1"], ["", "b2", "", ""], ["", "", "", ""], ["A4", "B4", "", "D4"], ] self.sheet.update(values, "A1") read_data = self.sheet.get("A1:D4") self.assertEqual( read_data, [ ["A1", "B1", "", "D1"], ["", "b2"], [], ["A4", "B4", "", "D4"], ], ) @pytest.mark.vcr() def test_batch_get(self): values = [ ["A1", "B1", "", "D1"], ["", "b2", "", ""], ["", "", "", ""], ["A4", "B4", "", "D4"], ] self.sheet.update(values, "A1") value_ranges = self.sheet.batch_get(["A1:B1", "B4:D4"]) self.assertEqual(value_ranges, [[["A1", "B1"]], [["B4", "", "D4"]]]) self.assertEqual(value_ranges[0].range, "Sheet1!A1:B1") self.assertEqual(value_ranges[1].range, "Sheet1!B4:D4") self.assertEqual(value_ranges[0].first(), "A1") @pytest.mark.vcr() def test_cell_return_first(self): cell = self.sheet.cell(1, 1) self.assertIsInstance(cell, gspread.cell.Cell) self.assertIsNone(cell.value) @pytest.mark.vcr() def test_batch_update(self): self.sheet.batch_update( [ { "range": "A1:D1", "values": [["A1", "B1", "", "D1"]], }, { "range": "A4:D4", "values": [["A4", "B4", "", "D4"]], }, ] ) data = self.sheet.get("A1:D4") self.assertEqual( data, [ ["A1", "B1", "", "D1"], [], [], ["A4", "B4", "", "D4"], ], ) @pytest.mark.vcr() def test_add_protected_range_normal(self): self.sheet.add_protected_range("A1:B2", []) metadata = self.spreadsheet.fetch_sheet_metadata() protected_ranges = metadata["sheets"][0]["protectedRanges"] self.assertEqual(protected_ranges[0]["range"]["startColumnIndex"], 0) self.assertEqual(protected_ranges[0]["range"]["endColumnIndex"], 2) self.assertEqual(protected_ranges[0]["range"]["startRowIndex"], 0) self.assertEqual(protected_ranges[0]["range"]["endRowIndex"], 2) @pytest.mark.vcr() def test_add_protected_range_warning(self): self.sheet.add_protected_range("A1:B2", warning_only=True) metadata = self.spreadsheet.fetch_sheet_metadata() protected_ranges = metadata["sheets"][0]["protectedRanges"] self.assertEqual(protected_ranges[0]["range"]["startColumnIndex"], 0) self.assertEqual(protected_ranges[0]["range"]["endColumnIndex"], 2) self.assertEqual(protected_ranges[0]["range"]["startRowIndex"], 0) self.assertEqual(protected_ranges[0]["range"]["endRowIndex"], 2) self.assertEqual(protected_ranges[0]["warningOnly"], True) @pytest.mark.vcr() def test_delete_protected_range(self): self.sheet.add_protected_range("A1:B2", []) metadata = self.spreadsheet.fetch_sheet_metadata() protected_ranges = metadata["sheets"][0]["protectedRanges"] self.assertEqual(len(protected_ranges), 1) self.sheet.delete_protected_range(protected_ranges[0]["protectedRangeId"]) metadata = self.spreadsheet.fetch_sheet_metadata() self.assertNotIn("protectedRanges", metadata["sheets"][0]) @pytest.mark.vcr() def test_format(self): cell_format = { "backgroundColor": {"green": 1, "blue": 1}, "horizontalAlignment": "CENTER", "textFormat": { "foregroundColor": { "red": 1, "green": 1, }, "fontSize": 12, "bold": True, }, } self.maxDiff = None self.sheet.format("A2:B2", cell_format) data = self.spreadsheet._spreadsheets_get( { "includeGridData": False, "ranges": ["Sheet1!A2"], "fields": "sheets.data.rowData.values.userEnteredFormat", } ) uef = data["sheets"][0]["data"][0]["rowData"][0]["values"][0][ "userEnteredFormat" ] del uef["backgroundColorStyle"] del uef["textFormat"]["foregroundColorStyle"] self.assertEqual(uef, cell_format) @pytest.mark.vcr() def test_reorder_worksheets(self): w = self.spreadsheet.worksheets() w.reverse() self.spreadsheet.reorder_worksheets(w) self.assertEqual( [i.id for i in w], [i.id for i in self.spreadsheet.worksheets()] ) @pytest.mark.vcr() def test_worksheet_update_index(self): # need to have multiple worksheets to reorder them self.spreadsheet.add_worksheet("test_sheet", 100, 100) self.spreadsheet.add_worksheet("test_sheet 2", 100, 100) worksheets = self.spreadsheet.worksheets() last_sheet = worksheets[-1] self.assertEqual(last_sheet.index, len(worksheets) - 1) last_sheet.update_index(0) worksheets = self.spreadsheet.worksheets() self.assertEqual(worksheets[0].id, last_sheet.id) self.assertEqual(last_sheet.index, 0) @pytest.mark.vcr() def test_worksheet_notes(self): w = self.spreadsheet.worksheets()[0] # test get_note when empty self.assertEqual(w.get_note("A1"), "") # test insert_note and get_note test_note_string = "slim shaddy" w.insert_note("A1", test_note_string) self.assertEqual(w.get_note("A1"), test_note_string) # test update_note update_note = "the real " + test_note_string w.update_note("A1", update_note) self.assertEqual(w.get_note("A1"), update_note) # test clear_note w.clear_note("A1") self.assertEqual(w.get_note("A1"), "") notes = {"A1": "read my note", "B2": "Or don't"} # test insert_notes w.insert_notes(notes) self.assertEqual(w.get_note("A1"), notes["A1"]) self.assertEqual(w.get_note("B2"), notes["B2"]) # test update_notes notes["A1"] = "remember to clean bedroom" notes["B2"] = "do homeworks" w.update_notes(notes) self.assertEqual(w.get_note("A1"), notes["A1"]) self.assertEqual(w.get_note("B2"), notes["B2"]) # test clear_notes w.clear_notes(["A1", "B2"]) self.assertEqual(w.get_note("A1"), "") self.assertEqual(w.get_note("B2"), "") with self.assertRaises(TypeError) as _: w.insert_note("A1", 42) w.insert_note("A1", ["asddf", "asdfqwebn"]) w.insert_note("A1", w) @pytest.mark.vcr() def test_get_notes(self): w = self.spreadsheet.worksheets()[0] notes = { "A1": "read my note", "B2": "Or don't", "A3": "another note", "C3": "test", } expected_notes = [ [notes["A1"]], ["", notes["B2"]], ["another note", "", "test"], ] expected_range_notes = [ ["", "Or don't"], ["another note", "", "test"], ] empty_notes = w.get_notes() w.insert_notes(notes) range_notes = w.get_notes(grid_range="A2:C3") all_notes = w.get_notes() self.assertEqual(empty_notes, [[]]) self.assertEqual(all_notes, expected_notes) self.assertEqual(range_notes, expected_range_notes) @pytest.mark.vcr() def test_get_notes_2nd_sheet(self): w2 = self.spreadsheet.add_worksheet("worksheet 2", 3, 3) notes = { "A1": "the first time", "B3": "two sheets", } expected_notes = [ ["the first time"], [], ["", "two sheets"], ] expected_range_notes = [ [], ["", "two sheets"], ] empty_notes = w2.get_notes() w2.insert_notes(notes) all_notes = w2.get_notes() range_notes = w2.get_notes(grid_range="A2:C3") self.assertEqual(empty_notes, [[]]) self.assertEqual(all_notes, expected_notes) self.assertEqual(range_notes, expected_range_notes) @pytest.mark.vcr() def test_batch_clear(self): w = self.spreadsheet.sheet1 # make sure cells are empty self.assertListEqual(w.get_values("A1:B1"), [[]]) self.assertListEqual(w.get_values("C2:E2"), [[]]) # fill the cells w.update([["12345", "ThisIsText"]], "A1:B1") w.update([["5678", "Second", "Text"]], "C2:E2") # confirm the cells are not empty self.assertNotEqual(w.get_values("A1:B1"), [[]]) self.assertNotEqual(w.get_values("C2:E2"), [[]]) # empty both cell range at once w.batch_clear(["A1:B1", "C2:E2"]) # confirm cells are empty # make sure cells are empty self.assertListEqual(w.get_values("A1:B1"), [[]]) self.assertListEqual(w.get_values("C2:E2"), [[]]) @pytest.mark.vcr() def test_group_columns(self): w = self.sheet w.add_dimension_group_columns(0, 2) col_groups = self.sheet.list_dimension_group_columns() range = col_groups[0]["range"] self.assertEqual(range["dimension"], utils.Dimension.cols) self.assertEqual(range["startIndex"], 0) self.assertEqual(range["endIndex"], 2) self.sheet.delete_dimension_group_columns(0, 2) col_groups = self.sheet.list_dimension_group_columns() self.assertEqual(col_groups, []) @pytest.mark.vcr() def test_group_rows(self): w = self.sheet w.add_dimension_group_rows(0, 2) row_groups = self.sheet.list_dimension_group_rows() range = row_groups[0]["range"] self.assertEqual(range["dimension"], utils.Dimension.rows) self.assertEqual(range["startIndex"], 0) self.assertEqual(range["endIndex"], 2) self.sheet.delete_dimension_group_rows(0, 2) row_groups = self.sheet.list_dimension_group_rows() self.assertEqual(row_groups, []) @pytest.mark.vcr() def test_hide_columns_rows(self): w = self.sheet # This is hard to verify # simply make the HTTP request to make sure it does not fail w.hide_columns(0, 2) w.unhide_columns(0, 2) w.hide_rows(0, 2) w.unhide_rows(0, 2) @pytest.mark.vcr() def test_hide_show_worksheet(self): """We can't retrieve this property from the API see issue: https://issuetracker.google.com/issues/229298342 We can only send the request and make sure it works. This is a trivial method, using recorded cassettes it will never fail. But next time we refresh the cassette it will make the real request.""" # you cannot hide all worksheet in a document with pytest.raises(APIError): self.sheet.hide() new_sheet = self.spreadsheet.add_worksheet("you cannot see me", 2, 2) # as describe in https://issuetracker.google.com/issues/229298342 # the response does not include some default values. # if missing => value is False res = self.spreadsheet.fetch_sheet_metadata() hidden_before = res["sheets"][1]["properties"].get("hidden", False) hidden_before_prop = new_sheet.isSheetHidden self.assertFalse(hidden_before) self.assertFalse(hidden_before_prop) new_sheet.hide() res = self.spreadsheet.fetch_sheet_metadata() hidden_after = res["sheets"][1]["properties"].get("hidden", False) hidden_after_prop = new_sheet.isSheetHidden self.assertTrue(hidden_after) self.assertTrue(hidden_after_prop) new_sheet.show() res = self.spreadsheet.fetch_sheet_metadata() hidden_before = res["sheets"][1]["properties"].get("hidden", False) hidden_before_prop = new_sheet.isSheetHidden self.assertFalse(hidden_before) self.assertFalse(hidden_before_prop) @pytest.mark.vcr() def test_hide_gridlines(self): """Hide gridlines. Check API to see if they are hidden.""" def are_gridlines_hidden(): res = self.spreadsheet.fetch_sheet_metadata() sheets = res["sheets"] sheet = utils.finditem( lambda x: x["properties"]["sheetId"] == self.sheet.id, sheets, ) return ( sheet["properties"] .get("gridProperties", {}) .get("hideGridlines", False) ) hidden_before = are_gridlines_hidden() hidden_before_property = self.sheet.is_gridlines_hidden self.sheet.hide_gridlines() hidden_after = are_gridlines_hidden() hidden_after_property = self.sheet.is_gridlines_hidden self.assertFalse(hidden_before) self.assertFalse(hidden_before_property) self.assertTrue(hidden_after) self.assertTrue(hidden_after_property) @pytest.mark.vcr() def test_show_gridlines(self): """Show gridlines. Check API to see if they are shown.""" def are_gridlines_hidden(): res = self.spreadsheet.fetch_sheet_metadata() sheets = res["sheets"] sheet = utils.finditem( lambda x: x["properties"]["sheetId"] == self.sheet.id, sheets, ) return ( sheet["properties"] .get("gridProperties", {}) .get("hideGridlines", False) ) hidden_before = are_gridlines_hidden() hidden_before_property = self.sheet.is_gridlines_hidden self.sheet.hide_gridlines() self.sheet.show_gridlines() hidden_after = are_gridlines_hidden() hidden_after_property = self.sheet.is_gridlines_hidden self.assertFalse(hidden_before) self.assertFalse(hidden_before_property) self.assertFalse(hidden_after) self.assertFalse(hidden_after_property) @pytest.mark.vcr() def test_auto_resize_columns(self): w = self.sheet # we can only check the result of `auto_resize_columns` # using only code and the API. # To test `auto_resize_row` we must use a web browser and # force the size of a row then auto resize it using gspread. # insert enough text to make it larger than the column w.update_acell("A1", "A" * 1024) # request only what we are looking for params = {"fields": "sheets.data.columnMetadata"} res = self.spreadsheet.fetch_sheet_metadata(params=params) size_before = res["sheets"][0]["data"][0]["columnMetadata"][0]["pixelSize"] # auto resize the first column w.columns_auto_resize(0, 1) res = self.spreadsheet.fetch_sheet_metadata(params=params) size_after = res["sheets"][0]["data"][0]["columnMetadata"][0]["pixelSize"] self.assertGreater(size_after, size_before) @pytest.mark.vcr() def test_copy_cut_range(self): w = self.sheet # init the sheet values values = [["A1"], ["A2"]] w.update(values, "A1:A2") # copy the values w.copy_range("A1:A2", "B1:B2") # check the copied values cells = w.range("B1:B2") self.assertListEqual( list(itertools.chain(*values)), [cell.value for cell in cells] ) # cut the original values in A1:A2 w.cut_range("A1:A2", "C1") # check the values have moved cells = w.range("A1:A2") self.assertListEqual([cell.value for cell in cells], ["", ""]) cells = w.range("C1:C2") self.assertListEqual( list(itertools.chain(*values)), [cell.value for cell in cells], ) @pytest.mark.vcr() def test_get_and_get_values_have_same_signature(self): """get_values and get should have the same signature apart from return_type and pad_values get_all_values should be the same as get_values """ sig_get = signature(self.sheet.get) sig_get_values = signature(self.sheet.get_values) sig_get_all_values = signature(self.sheet.get_all_values) # for get and get_values, all params should be equal apart from # return_type and pad_values params_get = sig_get.parameters params_get_values = sig_get_values.parameters self.assertEqual( { key: params_get[key] for key in params_get if key not in ["return_type", "pad_values"] }, { key: params_get_values[key] for key in params_get_values if key not in ["return_type", "pad_values"] }, ) self.assertNotEqual(params_get["return_type"], params_get_values["return_type"]) self.assertNotEqual(params_get["pad_values"], params_get_values["pad_values"]) # get_all_values should be a carbon copy of get_values self.assertEqual(sig_get_values, sig_get_all_values) @pytest.mark.vcr() def test_add_validation(self): sheet = self.sheet self.assertDictEqual( sheet.add_validation( "A1", utils.ValidationConditionType.one_of_list, ["y", "n"], strict=True, ), {"spreadsheetId": self.spreadsheet.id, "replies": [{}]}, ) with self.assertRaises(APIError) as ex: sheet.update(values="X", range_name="A1") # Ensure that the exception is able to be pickled and unpickled # Further ensure we are able to access the exception's properties after pickling reloaded_exception = pickle.loads(pickle.dumps(ex.exception)) # nosec self.assertEqual(reloaded_exception.args[0]["status"], "INVALID_ARGUMENT") ================================================ FILE: tox.ini ================================================ [tox] envlist = py38,py39,py310,py311,py312 skip_missing_interpreters = true # Used to run tests, **do not** set GS_CREDS_FILENAME to run off-line tests [testenv] description = Run project test suite passenv = GS_RECORD_MODE GS_CREDS_FILENAME APPDATA deps = -r test-requirements.txt commands = pytest {posargs} tests/ [flake8] extend-ignore = E203 extend-exclude = .tox,./env,./gspread/__init__.py max-line-length = 255 max-complexity = 10 show-source = True statistics = True [isort] extend_skip=.tox,./env,./gspread/__init__.py profile=black # Used by the CI to check code format/security [testenv:lint] description = Run code linters deps = -r lint-requirements.txt commands = black --check --diff --extend-exclude="./env|gspread/__init__.py" . codespell --skip=".tox,.git,./docs/build,.mypy_cache,./env" . flake8 . isort --check-only . mypy --install-types --non-interactive --ignore-missing-imports ./gspread ./tests # Used by developers to format code, best advised to be run before commit [testenv:format] description = Format code deps = -r lint-requirements.txt commands = black --extend-exclude="./env|gspread/__init__.py" . isort . [testenv:build] description = Build project package deps = build commands = python -m build [testenv:doc] description = Build the documentation deps = -r docs/requirements.txt commands = sphinx-build -W ./docs ./docs/build